mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-31 04:02:06 -07:00
24 lines
557 B
Plaintext
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()
|
|
}
|
|
}
|