3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00
Velocity/build.gradle.kts
2023-12-09 18:27:49 +00: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(17))
}
}
dependencies {
testImplementation(rootProject.libs.junit)
}
tasks {
test {
useJUnitPlatform()
reports {
junitXml.required.set(true)
}
}
}
}