Files
j2s/common/build.gradle.kts
2025-05-22 11:35:04 +03:00

19 lines
321 B
Kotlin

plugins {
id("j2s-common-java");
}
description = "A collection of utils and structures for the rest of the project";
tasks.processResources {
filesMatching("metadata", {
expand(
"version" to properties["project_version"],
"name" to properties["project_name"],
);
});
}
tasks.test {
useJUnitPlatform();
}