3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00
Velocity/build.gradle.kts

32 Zeilen
584 B
Plaintext

plugins {
`java-library`
id("velocity-checkstyle") apply false
id("velocity-spotless") apply false
}
2023-01-02 03:51:33 +01:00
subprojects {
apply<JavaLibraryPlugin>()
apply(plugin = "velocity-checkstyle")
apply(plugin = "velocity-spotless")
java {
toolchain {
2023-12-09 19:27:49 +01:00
languageVersion.set(JavaLanguageVersion.of(17))
}
}
dependencies {
testImplementation(rootProject.libs.junit)
}
tasks {
test {
useJUnitPlatform()
reports {
junitXml.required.set(true)
}
}
}
}