Files
onixbyte-bom/num4j/build.gradle.kts
T
2024-09-14 02:02:47 +08:00

19 lines
289 B
Kotlin

plugins {
id("java")
}
group = "com.onixbyte"
version = "unspecified"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}