mirror of
https://github.com/Eyre-S/sekai-scores.git
synced 2024-11-22 11:14:56 +08:00
Eyre_S
21dbb194fd
- change the id and seq and name def of SongUnit - change and added fields to Song - change and added fields to Difficulty - add subproj sekai-database for db connection and action(empty currently) - add sekai-cli command database to execute database manager action(no implementation currently)
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()
|
|
} |