KenCommandAPI/build.gradle.kts
2026-04-14 22:28:42 +02:00

24 lines
No EOL
524 B
Kotlin

plugins {
id("java")
id("io.freefair.lombok") version "9.2.0"
}
group = "de.kentoj"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
// https://mvnrepository.com/artifact/org.jetbrains/annotations
implementation("org.jetbrains:annotations:26.0.2-1")
}
tasks.test {
useJUnitPlatform()
}