diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/build.gradle b/build.gradle index 95820b8..e95a7a7 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,4 @@ buildscript { - repositories { mavenLocal() @@ -11,8 +10,6 @@ buildscript { dependencies { classpath 'org.wisepersist:gwt-gradle-plugin:1.0.6' classpath 'com.android.tools.build:gradle:3.1.0' - - } } @@ -41,12 +38,10 @@ allprojects { project(":desktop") { apply plugin: "java" - dependencies { implementation project(":core") implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion" implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop" - } } @@ -63,31 +58,14 @@ project(":android") { natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" - - } -} - -project(":html") { - apply plugin: "gwt" - apply plugin: "war" - - - dependencies { - 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" - } } project(":core") { apply plugin: "java" - dependencies { implementation "com.badlogicgames.gdx:gdx:$gdxVersion" - } } |