Initial commit

This commit is contained in:
ChUrl
2020-12-01 13:04:10 +01:00
commit a821112103
7 changed files with 321 additions and 0 deletions

23
build.gradle Normal file
View File

@ -0,0 +1,23 @@
plugins {
id 'java'
}
group 'de.churl'
version '1.0-SNAPSHOT'
sourceCompatibility = '14'
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform('org.junit:junit-bom:5.7.0'))
testImplementation('org.junit.jupiter:junit-jupiter')
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}