Added java version of the excersise

This commit is contained in:
Doménique Tilleuil
2019-08-08 10:20:39 +02:00
parent ca4afc497b
commit 45aed9314d
13 changed files with 437 additions and 0 deletions

21
java/build.gradle Normal file
View File

@@ -0,0 +1,21 @@
apply plugin: 'java'
group 'kata'
version '1.0-SNAPSHOT'
sourceCompatibility = 12
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
dependencies {
testCompile 'org.junit.jupiter:junit-jupiter:5.5.1'
testCompile 'org.assertj:assertj-core:3.13.2'
}