diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-27 22:08:41 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-27 22:26:28 +0100 | 
| commit | 1e2c79ed65ed88d9a3a675506c9bc3c2086d85ea (patch) | |
| tree | 3aba89a87b6f831758558e90b3701c5169385d3e | |
| parent | b59ca93d9de5580444fbf2a52590aab51f023f67 (diff) | |
| download | RustAndDust-1e2c79ed65ed88d9a3a675506c9bc3c2086d85ea.zip RustAndDust-1e2c79ed65ed88d9a3a675506c9bc3c2086d85ea.tar.gz  | |
build.gradle: include **/libs/*.jar
| -rw-r--r-- | build.gradle | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle index e3ebb52..525e7e0 100644 --- a/build.gradle +++ b/build.gradle @@ -38,7 +38,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')      }  } @@ -57,7 +57,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')      }  } @@ -73,7 +73,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')      }  }  | 
