13
0
geforkt von Mirrors/Velocity
Velocity/build.gradle.kts
2023-10-27 16:03:15 -04:00

32 Zeilen
584 B
Plaintext

plugins {
`java-library`
id("velocity-checkstyle") apply false
id("velocity-spotless") apply false
}
subprojects {
apply<JavaLibraryPlugin>()
apply(plugin = "velocity-checkstyle")
apply(plugin = "velocity-spotless")
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
dependencies {
testImplementation(rootProject.libs.junit)
}
tasks {
test {
useJUnitPlatform()
reports {
junitXml.required.set(true)
}
}
}
}