summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-01-23 22:10:39 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2016-01-23 22:10:39 +0100
commit806013eca099e7ad8d1d322ca7ebfaf5ee93c6b2 (patch)
tree1d2f51135b25f34d431d90346bfd91a288a06fe9 /build.gradle
parentbd2cfef54b95855850797b6e464842dfe4ae86c2 (diff)
downloadRustAndDust-806013eca099e7ad8d1d322ca7ebfaf5ee93c6b2.zip
RustAndDust-806013eca099e7ad8d1d322ca7ebfaf5ee93c6b2.tar.gz
build.gradle: do not include libs
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index 81358a7..323e28d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -41,7 +41,7 @@ project(":desktop") {
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
compile "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-desktop"
- compile fileTree(dir: 'libs', include: '*.jar')
+ /* compile fileTree(dir: 'libs', include: '*.jar') */
}
}
@@ -60,7 +60,7 @@ project(":android") {
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
- compile fileTree(dir: 'libs', include: '*.jar')
+ /* compile fileTree(dir: 'libs', include: '*.jar') */
}
}
@@ -104,7 +104,7 @@ project(":core") {
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
compile "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
testCompile "junit:junit:+"
- compile fileTree(dir: 'libs', include: '*.jar')
+ /* compile fileTree(dir: 'libs', include: '*.jar') */
}
}