j2s/runtime/build.gradle.kts
TopchetoEU d563fc4919
All checks were successful
tagged-release / Tagged Release (push) Successful in 5m23s
build: split up into multiple projects, use kotlin DLS
2025-01-10 04:14:40 +02:00

23 lines
361 B
Plaintext

plugins {
id("common-java");
}
description = "The runtime of J2S, used to execute J2S bytecode";
tasks.processResources {
filesMatching("metadata.json", {
expand(
"version" to properties["project_version"],
"name" to properties["project_name"],
);
});
}
tasks.test {
useJUnitPlatform();
}
dependencies {
implementation(project(":common"));
}