20 lines
450 B
Groovy
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()
|
|
}
|
|
}
|
|
}
|