eaglercraft-1.5/sp-server/build.gradle

106 lines
2.4 KiB
Groovy
Raw Normal View History

2022-02-16 17:54:12 -08:00
2022-07-29 16:48:06 -07:00
apply plugin: "java"
apply plugin: "eclipse"
apply plugin: "io.github.zebalu.teavm-gradle-plugin"
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
main {
java {
srcDir "src/main/java"
srcDir "src/ipc/java"
}
}
}
repositories {
flatDir {
dirs "deps"
}
}
2022-02-16 17:54:12 -08:00
buildscript {
repositories {
mavenCentral()
2022-02-16 17:54:12 -08:00
}
dependencies {
2022-07-29 16:48:06 -07:00
classpath 'io.github.zebalu:teavm-gradle-plugin:1.0.0'
2022-02-16 17:54:12 -08:00
}
}
2022-07-29 16:48:06 -07:00
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'io.github.zebalu.teavm-gradle-plugin'
2022-02-16 17:54:12 -08:00
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceSets {
main {
java {
srcDir "src/main/java"
srcDir "src/ipc/java"
}
}
}
repositories {
mavenCentral()
2022-02-16 17:54:12 -08:00
}
dependencies {
2022-07-29 16:48:06 -07:00
implementation 'org.teavm:teavm-platform:0.6.1'
implementation 'org.teavm:teavm-classlib:0.6.1'
2022-02-16 17:54:12 -08:00
}
teavm {
compileScopes = null;
minifying = true;
2022-02-16 17:54:12 -08:00
maxTopLevelNames = 10000;
properties = null;
debugInformationGenerated = false;
sourceMapsGenerated = true;
2022-02-16 17:54:12 -08:00
sourceFilesCopied = false;
incremental = false;
transformers = null;
/** Where to save the result */
targetDirectory = file("../javascript");
/** The directory to monitor to decide if compile is up-to-date or not */
sourceDirectory = file("src");
/** How to name the result file. */
targetFileName = "classes_server.js";
/** Which class holds your public static void main(Strin[] args) method */
mainClass = "net.lax1dude.eaglercraft.sp.IntegratedServer";
/** This will be the name of your main method after compilation. */
entryPointName = "main";
classesToPreserve = null;
stopOnErrors = false;
2022-07-29 16:48:06 -07:00
optimizationLevel = "ADVANCED"; //org.teavm.vm.TeaVMOptimizationLevel.SIMPLE;
2022-02-16 17:54:12 -08:00
fastGlobalAnalysis = false;
targetType = "JAVASCRIPT"; //org.teavm.tooling.TeaVMTargetType.JAVASCRIPT;
cacheDirectory = null;
wasmVersion = "V_0x1"; //org.teavm.backend.wasm.render.WasmBinaryVersion.V_0x1;
minHeapSize = 4;
maxHeapSize = 128;
outOfProcess = false;
processMemory = 512;
longjmpSupported = true;
heapDump = false;
/** Add name of configurations here where to look for jarfiles. */
includeJarsFrom = [];
/** By default teavmc taskd epends on javaCompile task, unless this varaibale is true. */
skipJavaCompile = false;
}