ctf/build.gradle.kts

22 lines
461 B
Plaintext
Raw Normal View History

plugins {
id("java")
}
group = "com.alttd.ctf"
version = "1.0-SNAPSHOT"
dependencies {
compileOnly("com.alttd:Galaxy-API:1.21-R0.1-SNAPSHOT") {
isChanging = true
}
compileOnly("org.projectlombok:lombok:1.18.32")
annotationProcessor("org.projectlombok:lombok:1.18.32")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}