CatgirlIntelligenceAgency/build.gradle

21 lines
345 B
Groovy
Raw Normal View History

2022-05-19 17:45:26 +02:00
plugins {
id 'java'
}
2023-03-04 13:19:01 +01:00
group 'marginalia'
2022-05-19 17:45:26 +02:00
version 'SNAPSHOT'
2023-03-04 13:19:01 +01:00
2022-05-19 17:45:26 +02:00
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
2023-03-04 13:19:01 +01:00
task dist(type: Copy) {
from subprojects.collect { it.tasks.withType(Tar) }
into "$buildDir/dist"
2022-05-19 17:45:26 +02:00
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}