j2s/compilation/build.gradle.kts

14 lines
190 B
Plaintext
Raw Permalink Normal View History

plugins {
id("common-java");
}
description = "A compiler of EcmaScript 5 code to J2S bytecode";
tasks.test {
useJUnitPlatform();
}
dependencies {
implementation(project(":common"));
}