plutoengine/build.gradle.kts

17 lines
314 B
Plaintext
Raw Permalink Normal View History

2022-04-06 12:29:35 +00:00
import org.plutoengine.Versions
tasks.withType<Wrapper> {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = "7.4.2"
}
2022-04-06 12:29:35 +00:00
allprojects {
group = "org.plutoengine"
version = Versions.versionFull
}
2022-04-06 12:29:35 +00:00
subprojects {
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
}