2017-04-30 08:25:59 +07:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2017-12-20 08:51:46 +07:00
|
|
|
google()
|
2017-04-30 08:25:59 +07:00
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-04-28 03:01:37 +07:00
|
|
|
classpath 'com.mobidevelop.robovm:robovm-gradle-plugin:2.3.0'
|
2017-04-30 08:25:59 +07:00
|
|
|
classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6'
|
2018-07-12 06:57:27 +07:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
2018-01-27 03:09:13 +07:00
|
|
|
classpath "com.badlogicgames.gdx:gdx-tools:1.9.8"
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
apply plugin: "eclipse"
|
|
|
|
apply plugin: "idea"
|
|
|
|
|
2017-12-19 12:05:41 +07:00
|
|
|
version = 'release'
|
2018-02-22 07:50:27 +07:00
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
ext {
|
2018-04-22 05:39:49 +07:00
|
|
|
versionNumber = '4.0'
|
2018-09-04 23:10:48 +07:00
|
|
|
versionModifier = 'alpha'
|
|
|
|
versionType = 'official'
|
2018-02-09 11:41:07 +07:00
|
|
|
appName = 'Mindustry'
|
2017-12-22 08:59:40 +07:00
|
|
|
gdxVersion = '1.9.8'
|
2018-04-28 03:01:37 +07:00
|
|
|
roboVMVersion = '2.3.0'
|
2018-10-06 03:36:50 +07:00
|
|
|
uCoreVersion = 'e0789c76198a90cb115e12f03d44ddec35b35a6e'
|
2018-02-09 11:41:07 +07:00
|
|
|
|
|
|
|
getVersionString = {
|
|
|
|
String buildVersion = getBuildVersion()
|
|
|
|
return "$versionNumber-$versionType-$buildVersion"
|
|
|
|
}
|
|
|
|
|
|
|
|
getBuildVersion = {
|
|
|
|
if(!project.hasProperty("buildversion")) return "custom build"
|
|
|
|
return project.getProperties()["buildversion"]
|
|
|
|
}
|
|
|
|
|
|
|
|
getPackage = {
|
|
|
|
return project.ext.mainClassName.substring(0, project.ext.mainClassName.indexOf("desktop") - 1)
|
|
|
|
}
|
2018-05-04 00:04:30 +07:00
|
|
|
|
2018-07-21 11:44:13 +07:00
|
|
|
generateLocales = {
|
2018-09-10 03:19:53 +07:00
|
|
|
def output = 'en\n'
|
2018-08-25 00:54:53 +07:00
|
|
|
def bundles = new File(project(':core').projectDir, 'assets/bundles/')
|
2018-07-21 11:44:13 +07:00
|
|
|
bundles.listFiles().each { other ->
|
|
|
|
if(other.name == "bundle.properties") return;
|
2018-09-10 03:19:53 +07:00
|
|
|
output += other.name.substring("bundle".length() + 1, other.name.lastIndexOf('.')) + "\n"
|
2018-07-21 11:44:13 +07:00
|
|
|
}
|
2018-09-10 03:19:53 +07:00
|
|
|
new File(project(':core').projectDir, 'assets/locales').text = output;
|
2018-07-21 11:44:13 +07:00
|
|
|
}
|
|
|
|
|
2018-05-04 00:04:30 +07:00
|
|
|
writeVersion = {
|
2018-08-25 00:54:53 +07:00
|
|
|
def pfile = new File(project(':core').projectDir, 'assets/version.properties')
|
2018-05-04 00:04:30 +07:00
|
|
|
def props = new Properties()
|
|
|
|
|
|
|
|
try{
|
|
|
|
pfile.createNewFile()
|
|
|
|
}catch (Exception e){}
|
|
|
|
|
|
|
|
if(pfile.exists()) {
|
|
|
|
|
|
|
|
props.load(new FileInputStream(pfile))
|
|
|
|
|
2018-09-04 23:10:48 +07:00
|
|
|
String buildid = getBuildVersion()
|
2018-05-04 00:04:30 +07:00
|
|
|
|
2018-09-04 23:10:48 +07:00
|
|
|
props["type"] = versionType
|
|
|
|
props["number"] = versionNumber
|
|
|
|
props["modifier"] = versionModifier
|
|
|
|
props["build"] = buildid
|
2018-05-04 00:04:30 +07:00
|
|
|
|
|
|
|
props.store(pfile.newWriter(), "Autogenerated file. Do not modify.")
|
|
|
|
}
|
|
|
|
}
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
|
|
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
|
2017-06-29 11:54:10 +07:00
|
|
|
maven { url 'https://jitpack.io' }
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(":desktop") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
2018-01-02 01:32:18 +07:00
|
|
|
compile project(":kryonet")
|
2018-09-26 10:27:19 +07:00
|
|
|
if(new File(projectDir.parent, '../debug').exists() && System.properties["release"] == null) compile project(":debug")
|
2018-09-11 06:33:12 +07:00
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
2017-12-23 06:10:34 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers-lwjgl3:$gdxVersion"
|
2018-05-14 11:43:53 +07:00
|
|
|
compile 'com.github.MinnDevelopment:java-discord-rpc:v2.0.0'
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
project(":html") {
|
|
|
|
apply plugin: "gwt"
|
|
|
|
apply plugin: "war"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
2018-06-10 04:05:47 +07:00
|
|
|
compileOnly project(":annotations")
|
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion:sources"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-gwt:$gdxVersion:sources"
|
2017-12-23 06:10:34 +07:00
|
|
|
|
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion:sources"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers-gwt:$gdxVersion:sources"
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
2018-10-04 02:53:33 +07:00
|
|
|
}
|
2018-06-10 04:05:47 +07:00
|
|
|
|
2018-04-28 03:01:37 +07:00
|
|
|
project(":ios") {
|
|
|
|
apply plugin: "java"
|
|
|
|
apply plugin: "robovm"
|
|
|
|
|
2018-08-09 01:42:10 +07:00
|
|
|
task copyGen{
|
2018-08-22 23:42:19 +07:00
|
|
|
copy{
|
|
|
|
from ("core/build/classes/java/main/io/anuke/mindustry/gen/"){
|
|
|
|
include "**/*.java"
|
2018-08-09 01:42:10 +07:00
|
|
|
}
|
2018-08-22 23:42:19 +07:00
|
|
|
|
|
|
|
into "ios/src/io/anuke/mindustry/gen"
|
2018-08-09 01:42:10 +07:00
|
|
|
}
|
|
|
|
|
2018-08-22 23:42:19 +07:00
|
|
|
doFirst{
|
2018-08-09 01:42:10 +07:00
|
|
|
delete{
|
2018-08-22 23:42:19 +07:00
|
|
|
delete "ios/src/io/anuke/mindustry/gen/"
|
2018-08-09 01:42:10 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-22 23:42:19 +07:00
|
|
|
build.dependsOn(copyGen)
|
2018-04-28 03:01:37 +07:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
2018-04-28 10:42:59 +07:00
|
|
|
implementation project(":kryonet")
|
|
|
|
|
2018-04-28 03:01:37 +07:00
|
|
|
compile "com.mobidevelop.robovm:robovm-rt:$roboVMVersion"
|
|
|
|
compile "com.mobidevelop.robovm:robovm-cocoatouch:$roboVMVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-robovm:$gdxVersion"
|
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-ios"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
project(":core") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-07-21 11:44:13 +07:00
|
|
|
task finish {
|
|
|
|
generateLocales()
|
|
|
|
}
|
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
dependencies {
|
2018-06-07 01:51:25 +07:00
|
|
|
compileOnly project(":annotations")
|
2018-07-21 11:44:13 +07:00
|
|
|
build.finalizedBy(finish)
|
2018-05-12 21:30:23 +07:00
|
|
|
|
2018-07-27 01:19:58 +07:00
|
|
|
def comp = System.properties["release"] == null || System.properties["release"] == "false"
|
2018-07-27 02:17:23 +07:00
|
|
|
if(!comp) println("Note: Compiling release build.")
|
2017-12-25 08:50:00 +07:00
|
|
|
|
2018-05-09 23:46:24 +07:00
|
|
|
if(new File(projectDir.parent, '../uCore').exists() && comp){
|
2017-12-22 04:45:25 +07:00
|
|
|
compile project(":uCore")
|
|
|
|
}else{
|
2017-12-22 08:59:40 +07:00
|
|
|
compile "com.github.anuken:ucore:$uCoreVersion"
|
2017-12-22 04:45:25 +07:00
|
|
|
}
|
2017-12-25 08:50:00 +07:00
|
|
|
|
2018-05-16 10:03:03 +07:00
|
|
|
if(new File(projectDir.parent, '../GDXGifRecorder').exists() && comp) {
|
2017-12-22 09:56:01 +07:00
|
|
|
compile project(":GDXGifRecorder")
|
|
|
|
}
|
2018-05-12 21:30:23 +07:00
|
|
|
|
2017-04-30 08:25:59 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx:$gdxVersion"
|
2017-12-23 06:10:34 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-controllers:$gdxVersion"
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
2018-05-12 21:30:23 +07:00
|
|
|
|
2018-06-07 01:51:25 +07:00
|
|
|
compileJava.options.compilerArgs = [
|
2018-09-10 03:19:53 +07:00
|
|
|
"-processor", "io.anuke.annotations.RemoteMethodAnnotationProcessor,io.anuke.annotations.SerializeAnnotationProcessor"
|
2018-06-07 01:51:25 +07:00
|
|
|
]
|
2017-04-30 08:25:59 +07:00
|
|
|
}
|
|
|
|
|
2018-01-28 11:42:42 +07:00
|
|
|
project(":server") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-07-14 09:02:13 +07:00
|
|
|
configurations {
|
2018-08-18 05:05:28 +07:00
|
|
|
if(findProject(":android") != null){
|
|
|
|
compile.exclude module: android
|
|
|
|
}
|
2018-07-14 09:02:13 +07:00
|
|
|
}
|
|
|
|
|
2018-01-28 11:42:42 +07:00
|
|
|
dependencies {
|
2018-06-15 04:11:38 +07:00
|
|
|
compileOnly project(":annotations")
|
|
|
|
|
2018-01-28 11:42:42 +07:00
|
|
|
compile project(":core")
|
|
|
|
compile project(":kryonet")
|
|
|
|
compile "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
2018-01-28 13:21:33 +07:00
|
|
|
compile "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
2018-01-28 11:42:42 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 07:58:35 +07:00
|
|
|
project(":tests"){
|
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation project(":core")
|
|
|
|
testImplementation('org.junit.jupiter:junit-jupiter-api:5.1.0')
|
|
|
|
testRuntimeOnly('org.junit.jupiter:junit-jupiter-engine:5.1.0')
|
|
|
|
testImplementation "com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion"
|
|
|
|
testImplementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
workingDir = new File("../core/assets")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-04 02:53:33 +07:00
|
|
|
project(":tools") {
|
2018-06-16 05:06:05 +07:00
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-12 21:30:23 +07:00
|
|
|
project(":annotations") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
2018-05-14 06:41:50 +07:00
|
|
|
dependencies {
|
|
|
|
compile 'com.squareup:javapoet:1.11.0'
|
|
|
|
}
|
2018-05-12 21:30:23 +07:00
|
|
|
}
|
|
|
|
|
2018-01-02 01:32:18 +07:00
|
|
|
project(":kryonet") {
|
|
|
|
apply plugin: "java"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":core")
|
2018-09-09 04:07:25 +07:00
|
|
|
compile "org.lz4:lz4-java:1.4.1"
|
2018-09-10 04:44:10 +07:00
|
|
|
compile 'com.github.Anuken:kryonet:53b10247b1'
|
2018-08-31 08:39:27 +07:00
|
|
|
compile 'com.github.Anuken:WaifUPnP:05eb46bc577fd7674596946ba288c96c0cedd893'
|
2018-01-02 01:32:18 +07:00
|
|
|
}
|
2018-09-29 16:50:21 +07:00
|
|
|
}
|