mirror of
https://github.com/Eyre-S/sekai-scores.git
synced 2024-11-25 20:47:40 +08:00
19 lines
305 B
Groovy
19 lines
305 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'cc.sukazyo'
|
||
|
version projVersion
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${lib_junit_v}"
|
||
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${lib_junit_v}"
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|