samples: fix classpath so that it's possible to run TeaVM out-of-process

This commit is contained in:
Alexey Andreev 2023-11-25 15:56:45 +01:00
parent f3bf9d812f
commit 607e107e70

View File

@ -57,6 +57,7 @@ kotlin {
tasks.withType<TeaVMTask> {
classpath.from(kotlin.jvm().compilations["main"].output.classesDirs)
classpath.from(kotlin.jvm().compilations["main"].runtimeDependencyFiles)
}
tasks.war {