mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-01-07 05:50:58 +07:00
355 lines
11 KiB
Groovy
355 lines
11 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
|
classpath "gradle.plugin.io.netifi:gradle-flatbuffers-plugin:1.0.5"
|
|
}
|
|
dependencies {
|
|
// lib for artemis-odb weaving.
|
|
// see https://github.com/junkdog/artemis-odb/wiki/Bytecode-weaving
|
|
classpath "net.onedaybeard.artemis:artemis-odb-gradle-plugin:2.2.0"
|
|
|
|
// lib for artemis-odb fluid.
|
|
classpath "net.onedaybeard.artemis:artemis-fluid-gradle-plugin:2.2.0"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: "idea"
|
|
|
|
version = '1.0'
|
|
ext {
|
|
appName = "diablo"
|
|
gdxVersion = '1.9.11'
|
|
roboVMVersion = '2.3.3'
|
|
box2DLightsVersion = '1.4'
|
|
aiVersion = '1.8.0'
|
|
artemisVersion = '2.3.0'
|
|
artemisContribVersion = '2.4.0'
|
|
nettyVersion = '4.1.50.Final'
|
|
}
|
|
|
|
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(":tools") {
|
|
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"
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
compile "com.kotcrab.vis:vis-ui:$visuiVersion"
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
|
compile "com.badlogicgames.box2dlights:box2dlights:1.4"
|
|
}
|
|
}
|
|
|
|
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"
|
|
compile "com.badlogicgames.gdx:gdx-controllers-desktop:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-controllers-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
}
|
|
|
|
project(":android") {
|
|
apply plugin: "android"
|
|
|
|
configurations { natives }
|
|
|
|
dependencies {
|
|
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"
|
|
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86"
|
|
natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64"
|
|
implementation "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
|
|
implementation "com.badlogicgames.gdx:gdx-controllers-android:$gdxVersion"
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi"
|
|
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"
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.sufficientlysecure:openpgp-api:12.0"
|
|
}
|
|
}
|
|
|
|
project(":core") {
|
|
apply plugin: "java"
|
|
apply plugin: "artemis"
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-ai:1.8.2"
|
|
compile "com.badlogicgames.gdx:gdx-controllers:$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: 'org.apache.commons', name: 'commons-text', version: '1.8'
|
|
compile group: 'com.jcraft', name: 'jzlib', version: '1.1.3'
|
|
compile group: 'com.google.flatbuffers', name: 'flatbuffers-java', version: '1.11.0'
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
compile "com.badlogicgames.box2dlights:box2dlights:1.4"
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.reflections:reflections:0.9.12"
|
|
}
|
|
|
|
dependencies {
|
|
// components to expose
|
|
compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion"
|
|
compile "net.mostlyoriginal.artemis-odb:contrib-core:$artemisContribVersion"
|
|
//compile "net.mostlyoriginal.artemis-odb:contrib-jam:$artemisContribVersion"
|
|
|
|
// Artemis-odb
|
|
compile "net.onedaybeard.artemis:artemis-odb:$artemisVersion"
|
|
compile "net.onedaybeard.artemis:artemis-odb-serializer-json-libgdx:$artemisVersion"
|
|
|
|
// Artemis-odb bonus functionality (systems, events, components).
|
|
compile "net.mostlyoriginal.artemis-odb:contrib-core:$artemisContribVersion"
|
|
//compile "net.mostlyoriginal.artemis-odb:contrib-jam:$artemisContribVersion"
|
|
compile "net.mostlyoriginal.artemis-odb:contrib-eventbus:$artemisContribVersion"
|
|
//compile "net.mostlyoriginal.artemis-odb:contrib-plugin-operations:$artemisContribVersion"
|
|
//compile "net.mostlyoriginal.artemis-odb:contrib-plugin-profiler:$artemisContribVersion"
|
|
// compile "net.mostlyoriginal.artemis-odb:contrib-plugin-singleton:$artemisContribVersion" // TODO: when added
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'io.netty', name: 'netty-all', version: nettyVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
testCompile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
}
|
|
|
|
project(":server:bnls") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
}
|
|
|
|
project(":server:bncs") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
}
|
|
|
|
project(":server:mcp") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
}
|
|
|
|
project(":server:d2gs") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
}
|
|
|
|
project(":server:netty") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
}
|
|
|
|
dependencies {
|
|
compile group: 'commons-cli', name: 'commons-cli', version: cliVersion
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'junit:junit:4.12'
|
|
}
|
|
}
|
|
|
|
project(":mpqlib") {
|
|
apply plugin: "java"
|
|
|
|
dependencies {
|
|
compile project(":core")
|
|
compile "com.badlogicgames.gdx:gdx-jnigen:$gdxVersion"
|
|
}
|
|
}
|