summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-06-27 00:34:15 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2018-06-28 16:24:57 +0200
commitc87bb2d10bab1f68d320b7f564e568ab742193ac (patch)
tree419e9395622f1727d17fcae7858b86ddd6df4cf2
parent926ff7439cb4298f482e6c73de393550f4827a31 (diff)
downloadgdx-boardgame-c87bb2d10bab1f68d320b7f564e568ab742193ac.zip
gdx-boardgame-c87bb2d10bab1f68d320b7f564e568ab742193ac.tar.gz
gradle : replace configuration compile with implementation
-rw-r--r--build.gradle20
1 files changed, 10 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle
index 180f67a..95820b8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -43,9 +43,9 @@ project(":desktop") {
dependencies {
- compile project(":core")
- compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
+ implementation project(":core")
+ implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
+ implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
}
}
@@ -56,8 +56,8 @@ project(":android") {
configurations { natives }
dependencies {
- compile project(":core")
- compile "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
+ implementation project(":core")
+ implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
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-arm64-v8a"
@@ -73,10 +73,10 @@ project(":html") {
dependencies {
- compile project(":core")
- compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
- compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
- compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
+ implementation project(":core")
+ implementation "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
+ implementation "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
+ implementation "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
}
}
@@ -86,7 +86,7 @@ project(":core") {
dependencies {
- compile "com.badlogicgames.gdx:gdx:$gdxVersion"
+ implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
}
}