j2s/runtime/build.gradle.kts

14 lines
191 B
Plaintext
Raw Permalink Normal View History

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