14 lines
195 B
Kotlin
14 lines
195 B
Kotlin
plugins {
|
|
id("j2s-common-java");
|
|
}
|
|
|
|
description = "The runtime of J2S, used to execute J2S bytecode";
|
|
|
|
tasks.test {
|
|
useJUnitPlatform();
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":common"));
|
|
}
|