84 lines
2.1 KiB
Groovy
84 lines
2.1 KiB
Groovy
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'io.github.zebalu:teavm-gradle-plugin:1.0.0'
|
|
}
|
|
}
|
|
|
|
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/teavm/java'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.teavm:teavm-platform:0.6.1'
|
|
implementation 'org.teavm:teavm-classlib:0.6.1'
|
|
}
|
|
|
|
teavm {
|
|
|
|
compileScopes = null;
|
|
minifying = false;
|
|
maxTopLevelNames = 10000;
|
|
properties = null;
|
|
debugInformationGenerated = false;
|
|
sourceMapsGenerated = true;
|
|
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.js";
|
|
|
|
/** Which class holds your public static void main(Strin[] args) method */
|
|
mainClass = 'net.lax1dude.eaglercraft.Client';
|
|
|
|
/** This will be the name of your main method after compilation. */
|
|
entryPointName = 'main';
|
|
|
|
classesToPreserve = null;
|
|
stopOnErrors = false;
|
|
optimizationLevel = "FULL"; //org.teavm.vm.TeaVMOptimizationLevel.SIMPLE;
|
|
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 task depends on javaCompile task, unless this variable is true. */
|
|
skipJavaCompile = false;
|
|
}
|