mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-07 05:50:58 +07:00
181 lines
4.6 KiB
Groovy
181 lines
4.6 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: "eclipse"
|
|
apply plugin: "idea"
|
|
|
|
version = '1.0'
|
|
ext {
|
|
appName = "diablo"
|
|
gdxVersion = '1.9.+'
|
|
roboVMVersion = '2.3.3'
|
|
box2DLightsVersion = '1.4'
|
|
ashleyVersion = '1.7.0'
|
|
aiVersion = '1.8.0'
|
|
}
|
|
|
|
ext {
|
|
cliVersion = '1.4'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
google()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
project(":tester") {
|
|
apply plugin: "java"
|
|
|
|
ext {
|
|
visuiVersion = '1.4.0'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
}
|
|
|
|
project(":mapbuilder") {
|
|
apply plugin: "java"
|
|
|
|
ext {
|
|
visuiVersion = '1.4.0'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
}
|
|
|
|
project(":ds1viewer") {
|
|
apply plugin: "java"
|
|
|
|
ext {
|
|
visuiVersion = '1.4.0'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
}
|
|
|
|
project(":mpqviewer") {
|
|
apply plugin: "java"
|
|
|
|
ext {
|
|
visuiVersion = '1.4.2'
|
|
}
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
}
|
|
|
|
project(":desktop") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
}
|
|
|
|
project(":android") {
|
|
apply plugin: "android"
|
|
|
|
configurations { natives }
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "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"
|
|
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
|
|
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.sufficientlysecure:openpgp-api:12.0"
|
|
}
|
|
}
|
|
|
|
project(":core") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'com.google.guava', name: 'guava', version: '20.0'
|
|
compile group: 'com.android.support', name: 'support-annotations', version: '27.1.1'
|
|
compile group: 'commons-io', name: 'commons-io', version: '2.5'
|
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.6'
|
|
compile group: 'org.apache.commons', name: 'commons-collections4', version: '4.1'
|
|
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
|
|
compile group: 'com.jcraft', name: 'jzlib', version: '1.1.3'
|
|
}
|
|
}
|
|
|
|
tasks.eclipse.doLast {
|
|
delete ".project"
|
|
} |