Re: Maven + LibGDX - HELP!

2013-05-29 Thread JvJ
Thank you! I deleted my .m2 folder. I had already installed a separate version of libgdx locally, and I guess that was interfering. On Wednesday, 29 May 2013 04:32:33 UTC-4, Stephen Kockentiedt wrote: > > - Which version of Windows do you use? > - Which lein version do you use? > - What is the

Re: Maven + LibGDX - HELP!

2013-05-29 Thread Stephen Kockentiedt
- Which version of Windows do you use? - Which lein version do you use? - What is the output if you delete the folder .m2 in your home folder and then call lein deps? On Wednesday, May 29, 2013 10:16:14 AM UTC+2, JvJ wrote: > > Unfortunately, same problem: > > Unable to read file for extraction:

Re: Maven + LibGDX - HELP!

2013-05-29 Thread JvJ
Unfortunately, same problem: Unable to read file for extraction: gdx.dll [Thrown class com.badlogic.gdx.utils.GdxRuntimeException] I feel like there should be a target/native folder, but it's not there. On Wednesday, 29 May 2013 03:48:33 UTC-4, Stephen Kockentiedt wrote: > > It should works li

Re: Maven + LibGDX - HELP!

2013-05-29 Thread Stephen Kockentiedt
It should works like this: (defproject libgdxtest "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME"; :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :repositories [["libgdx" "http://libgdx.badlog

Re: Maven + LibGDX - HELP!

2013-05-29 Thread JvJ
Hey man. Do you have any advice on how to deal with native dependencies in this case? I have the following project.clj, but the dlls aren't getting copied. (defproject libgdxtest "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME"; :license {:name "Ecl

Re: Maven + LibGDX - HELP!

2013-05-27 Thread JvJ
Wowwee zowee that's a lot of code. Thanks. On Saturday, 25 May 2013 22:02:07 UTC-4, JvJ wrote: > > I am more or less terrible at Maven, but I'm OK with Leiningen. Given > that I have some information about a Maven repository ( > https://code.google.com/p/libgdx/wiki/MavenProjectSetup#Maven_Arch

Re: Maven + LibGDX - HELP!

2013-05-27 Thread Stephen Kockentiedt
You just have to include the following item under :dependencies in your project.clj: [com.badlogic.gdx/gdx "0.9.9-SNAPSHOT"] [com.badlogic.gdx/gdx-backend-lwjgl "0.9.9-SNAPSHOT"] If you want to use another backend, you have to change the second entry accordingly. The following code is the main

Maven + LibGDX - HELP!

2013-05-25 Thread JvJ
I am more or less terrible at Maven, but I'm OK with Leiningen. Given that I have some information about a Maven repository ( https://code.google.com/p/libgdx/wiki/MavenProjectSetup#Maven_Archetype), how do I use it with Leiningen? Thanks -- -- You received this message because you are subsc