This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
open-eggbert-java/teavm/build.gradle

48 lines
1.7 KiB
Groovy

plugins {
id 'java'
id 'org.gretty' version '3.1.0'
}
gretty {
contextPath = '/'
extraResourceBase 'build/dist/webapp'
}
sourceSets.main.resources.srcDirs += [ rootProject.file('assets').path ]
project.ext.mainClassName = 'com.openeggbert.teavm.TeaVMBuilder'
eclipse.project.name = appName + '-teavm'
// This must be at least 11, and no higher than the JDK version this project is built with.
java.targetCompatibility = "11"
// This should probably be equal to targetCompatibility, above. This only affects the TeaVM module.
java.sourceCompatibility = "11"
dependencies {
implementation "com.github.xpenatan.gdx-teavm:backend-teavm:$gdxTeaVMVersion"
implementation "org.teavm:teavm-classlib:$teaVMVersion"
implementation "org.teavm:teavm-core:$teaVMVersion"
implementation "org.teavm:teavm-jso-apis:$teaVMVersion"
implementation "org.teavm:teavm-jso-impl:$teaVMVersion"
implementation "org.teavm:teavm-jso:$teaVMVersion"
implementation "org.teavm:teavm-tooling:$teaVMVersion"
implementation project(':core')
implementation "com.pixelgamelibrary:pixel:$pixelVersion:sources"
api "com.pixelgamelibrary:pixel-backend-libgdx:$pixelVersion"
implementation "com.pixelgamelibrary:pixel-backend-libgdx:$pixelVersion:sources"
}
tasks.register('buildJavaScript', JavaExec) {
dependsOn classes
setDescription("Transpile bytecode to JavaScript via TeaVM")
mainClass.set(project.mainClassName)
setClasspath(sourceSets.main.runtimeClasspath)
}
build.dependsOn buildJavaScript
tasks.register("run") {
description = "Run the JavaScript application hosted via a local Jetty server at http://localhost:8080/"
dependsOn(buildJavaScript/*, tasks.named("jettyRun")*/)//todo
}