19 lines
286 B
Text
19 lines
286 B
Text
|
plugins {
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
group = "dev.exhq"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|