j2s/common/build.gradle.kts

19 lines
317 B
Plaintext
Raw Permalink Normal View History

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