2017-11-21 22:09:35 +00:00
|
|
|
buildscript {
|
2018-02-23 13:36:13 +00:00
|
|
|
|
2019-01-19 19:01:47 +00:00
|
|
|
ext.kotlinVersion = '1.3.11'
|
2018-02-23 13:36:13 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
|
|
|
|
}
|
|
|
|
|
2017-11-21 22:09:35 +00:00
|
|
|
|
|
|
|
repositories {
|
2018-12-02 12:12:47 +00:00
|
|
|
google()
|
2017-11-21 22:09:35 +00:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
|
2019-05-23 19:08:38 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.1'
|
2017-11-21 22:09:35 +00:00
|
|
|
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: "eclipse"
|
|
|
|
apply plugin: "idea"
|
|
|
|
|
2017-11-25 19:56:04 +00:00
|
|
|
version = '1.0.1'
|
2017-11-21 22:09:35 +00:00
|
|
|
ext {
|
2017-11-25 19:56:04 +00:00
|
|
|
appName = "unciv-game"
|
2018-12-02 12:12:47 +00:00
|
|
|
gdxVersion = '1.9.9'
|
2017-11-21 22:09:35 +00:00
|
|
|
roboVMVersion = '2.3.1'
|
|
|
|
box2DLightsVersion = '1.4'
|
|
|
|
ashleyVersion = '1.7.0'
|
|
|
|
aiVersion = '1.8.0'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2018-12-02 12:38:53 +00:00
|
|
|
google()
|
2018-12-02 13:25:55 +00:00
|
|
|
jcenter()
|
2017-11-21 22:09:35 +00:00
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(":desktop") {
|
2018-02-23 13:36:13 +00:00
|
|
|
apply plugin: "kotlin"
|
2017-11-21 22:09:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation project(":core")
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl:$gdxVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-desktop"
|
2018-08-10 08:05:21 +00:00
|
|
|
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation "com.badlogicgames.gdx:gdx-tools:$gdxVersion" // This is for the TexturePacker class
|
2017-11-21 22:09:35 +00:00
|
|
|
}
|
2018-08-10 08:05:21 +00:00
|
|
|
|
|
|
|
|
2017-11-21 22:09:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
project(":android") {
|
|
|
|
apply plugin: "android"
|
2018-12-02 13:46:45 +00:00
|
|
|
//apply plugin: "kotlin-android" // This seems to have problems in Gradle 4.6
|
2017-11-21 22:09:35 +00:00
|
|
|
|
|
|
|
configurations { natives }
|
|
|
|
|
|
|
|
dependencies {
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation project(":core")
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion"
|
2017-11-21 22:09:35 +00:00
|
|
|
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"
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
2017-11-21 22:09:35 +00:00
|
|
|
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"
|
2018-05-01 18:41:02 +00:00
|
|
|
|
|
|
|
// Freetype
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
2018-05-01 18:41:02 +00:00
|
|
|
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi"
|
|
|
|
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-armeabi-v7a"
|
|
|
|
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-arm64-v8a"
|
|
|
|
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86"
|
|
|
|
natives "com.badlogicgames.gdx:gdx-freetype-platform:$gdxVersion:natives-x86_64"
|
2018-08-10 08:05:21 +00:00
|
|
|
|
2017-11-21 22:09:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(":ios") {
|
2018-02-23 13:36:13 +00:00
|
|
|
apply plugin: "kotlin"
|
2017-11-21 22:09:35 +00:00
|
|
|
apply plugin: "robovm"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation project(":core")
|
|
|
|
implementation "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
|
|
|
|
implementation "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-ios"
|
2017-11-21 22:09:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
project(":core") {
|
2018-02-23 13:36:13 +00:00
|
|
|
apply plugin: "kotlin"
|
2017-11-21 22:09:35 +00:00
|
|
|
|
|
|
|
dependencies {
|
2018-12-02 13:33:30 +00:00
|
|
|
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
|
|
|
|
implementation "com.badlogicgames.gdx:gdx-freetype:$gdxVersion"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
2017-11-21 22:09:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.eclipse.doLast {
|
|
|
|
delete ".project"
|
|
|
|
}
|