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