use original libgdx

This commit is contained in:
Hannes Janetzek
2014-02-23 18:13:40 +01:00
parent 60f9ccc9f6
commit c5479c18f6
8 changed files with 938 additions and 23 deletions

View File

@@ -1,3 +1,6 @@
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
apply plugin: 'java'
apply plugin: 'maven'
@@ -26,9 +29,11 @@ run { ignoreExitValue = true }
dependencies {
compile project(':vtm-gdx')
compile project(':vtm-themes')
compile files('../vtm-ext-libs/gdx/gdx-backend-lwjgl.jar')
compile files('../vtm-ext-libs/gdx/gdx-backend-lwjgl-natives.jar')
compile files('../vtm-ext-libs/gdx/gdx-natives.jar')
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
//compile files('../vtm-ext-libs/gdx/gdx-backend-lwjgl.jar')
//compile files('../vtm-ext-libs/gdx/gdx-backend-lwjgl-natives.jar')
//compile files('../vtm-ext-libs/gdx/gdx-natives.jar')
compile files('../vtm-ext-libs/gdx/vtm-jni-natives.jar')
compile 'org.slf4j:slf4j-simple:1.7.5'
}