Hello world

This commit is contained in:
2021-09-28 11:17:52 +02:00
commit 9cdbb84076
35 changed files with 1150 additions and 0 deletions

19
build.gradle Normal file
View File

@@ -0,0 +1,19 @@
// 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()
}
}
}