Files
osgi-training/build.gradle
2021-09-28 11:17:52 +02:00

20 lines
450 B
Groovy

// Available to customize the build
subprojects {
if (file('bnd.bnd').exists()) {
repositories {
maven {
url bndWorkspace.getProperty('amdatu-blueprint-maven-releaseUrls')
}
}
dependencies {
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:' + bndWorkspace.getProperty('junit-version')
}
test {
useJUnitPlatform()
}
}
}