VegaHRM.Backend/vega-hrm-auth/build.gradle
2025-11-14 23:24:44 +07:00

19 lines
280 B
Groovy

plugins {
id 'java'
}
group = 'com.vega.hrm'
version = 'unspecified'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}