diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-04 21:06:09 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-04 21:06:09 +0100 |
commit | 45ce22c8270959dbefeb73a02b4fc49681afa475 (patch) | |
tree | 18b4adc281b7bdc44c9b840eeac71191e417c1ab /build.gradle | |
parent | 8debbf03eb5b6a4f16f2e64a26ec1ff99fba6bd8 (diff) | |
download | RustAndDust-45ce22c8270959dbefeb73a02b4fc49681afa475.zip RustAndDust-45ce22c8270959dbefeb73a02b4fc49681afa475.tar.gz |
build.gradle: box2d is not used
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/build.gradle b/build.gradle index f5688a6..a65fe74 100644 --- a/build.gradle +++ b/build.gradle @@ -40,7 +40,6 @@ project(":desktop") { compile project(":core") compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" - compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop" compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop" } } @@ -56,10 +55,6 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" - compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion" - natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi" - natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a" - natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86" compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi" natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a" @@ -79,7 +74,6 @@ project(":ios") { compile "org.robovm:robovm-cocoatouch:${roboVMVersion}" compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios" - natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios" } } @@ -93,8 +87,6 @@ project(":html") { compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion" compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources" compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources" - compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion:sources" - compile "com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources" } } @@ -108,7 +100,6 @@ project(":core") { dependencies { compile "com.badlogicgames.gdx:gdx:$gdxVersion" - compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion" compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion" testCompile "junit:junit:+" } |