Files
paper-mc/paper-checkstyle/build.gradle.kts
2025-07-27 09:39:49 -07:00

24 lines
557 B
Plaintext

plugins {
java
}
val testData = sourceSets.create("testData")
dependencies {
implementation("com.puppycrawl.tools:checkstyle:10.26.1")
implementation("org.jspecify:jspecify:1.0.0")
testCompileOnly("org.jetbrains:annotations:26.0.2")
testImplementation(testData.output)
testImplementation("org.junit.jupiter:junit-jupiter:5.13.3")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testData.implementationConfigurationName("org.jspecify:jspecify:1.0.0")
}
tasks {
test {
useJUnitPlatform()
}
}