1. Update to lastest TeaVM, which is currently 0.8.1 (optionally, you can update to preview build, see https://teavm.org/docs/tooling/gradle.html)
2. Use native TeaVM gradle plugin, see
https://teavm.org/docs/tooling/gradle.html
--
You received this message because you are subscribed to the Google Groups "TeaVM" group.
To unsubscribe from this group and stop receiving emails from it, send an email to teavm+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/teavm/95c654b9-2403-4ded-a867-d29bdd323f65n%40googlegroups.com.
You need to apply some language plugin first, e.g. Java or Kotlin

I have fixed that, but now it says it's missing dependencies?repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.teavm/teavm-core
implementation group: 'org.teavm', name: 'teavm-core', version: '0.8.1'
// https://mvnrepository.com/artifact/org.teavm/teavm-classlib
implementation group: 'org.teavm', name: 'teavm-classlib', version: '0.8.1'
// https://mvnrepository.com/artifact/org.teavm/teavm-jso
implementation group: 'org.teavm', name: 'teavm-jso', version: '0.8.1'
// https://mvnrepository.com/artifact/org.teavm/teavm-tooling
implementation group: 'org.teavm', name: 'teavm-tooling', version: '0.8.1'
// https://mvnrepository.com/artifact/org.teavm/teavm-junit
testImplementation group: 'org.teavm', name: 'teavm-junit', version: '0.8.1'
}