[-] Disable plain jar

This commit is contained in:
Azalea
2024-03-02 23:59:03 -05:00
parent 284a1f0b57
commit 9ea5e2cd90
2 changed files with 7 additions and 3 deletions

View File

@@ -97,10 +97,14 @@ tasks.test {
useJUnitPlatform()
}
tasks.withType<JavaCompile>() {
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
tasks.withType<Javadoc>() {
tasks.withType<Javadoc> {
options.encoding = "UTF-8"
}
tasks.getByName<Jar>("jar") {
enabled = false
}