22 lines
500 B
Plaintext
22 lines
500 B
Plaintext
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "com.user404_"
|
|
version = "1.2"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots") }
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
compileOnly("org.spigotmc:spigot-api:1.21.8-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |