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