2025-06-18 00:00:34 +08:00

19 lines
298 B
Groovy

plugins {
id 'java'
}
group = 'com.mingliqiye.gitea.releases'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}