Files
onixbyte-bom/num4j/build.gradle.kts
T

19 lines
289 B
Kotlin
Raw Normal View History

2024-09-14 02:02:47 +08:00
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()
}