mirror of
https://github.com/tiennm99/libGDX-tutorial.git
synced 2026-06-08 16:16:03 +00:00
106 lines
3.0 KiB
Groovy
106 lines
3.0 KiB
Groovy
buildscript {
|
|
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'org.wisepersist:gwt-gradle-plugin:1.0.13'
|
|
classpath 'org.gretty:gretty:3.0.2'
|
|
classpath 'com.android.tools.build:gradle:4.2.0'
|
|
|
|
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: "eclipse"
|
|
|
|
version = '1.0'
|
|
ext {
|
|
appName = "drop"
|
|
gdxVersion = '1.10.0'
|
|
roboVMVersion = '2.3.12'
|
|
box2DLightsVersion = '1.5'
|
|
ashleyVersion = '1.7.3'
|
|
aiVersion = '1.8.2'
|
|
gdxControllersVersion = '2.1.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
}
|
|
}
|
|
|
|
project(":desktop") {
|
|
apply plugin: "java-library"
|
|
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
api "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
api "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
}
|
|
|
|
project(":core") {
|
|
apply plugin: "java-library"
|
|
|
|
|
|
dependencies {
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
|
|
}
|
|
}
|
|
|
|
project(":html") {
|
|
apply plugin: "java-library"
|
|
apply plugin: "gwt"
|
|
apply plugin: "war"
|
|
apply plugin: "org.gretty"
|
|
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
api "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
|
|
api "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
|
|
api "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
|
|
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion:sources"
|
|
api "com.badlogicgames.gdx:gdx-box2d-gwt:$gdxVersion:sources"
|
|
|
|
}
|
|
}
|
|
|
|
project(":android") {
|
|
apply plugin: "com.android.application"
|
|
|
|
configurations { natives }
|
|
|
|
dependencies {
|
|
implementation project(":core")
|
|
api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
|
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a"
|
|
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"
|
|
api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
|
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
|
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
|
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86_64"
|
|
|
|
}
|
|
}
|