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