This commit is contained in:
nora 2023-01-09 09:26:41 +01:00
parent a3b836265a
commit 7a3dd4b7e9
23 changed files with 636 additions and 1630 deletions

26
build.gradle Normal file
View file

@ -0,0 +1,26 @@
plugins {
id 'java'
}
group = 'ch.bbw.m411'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testImplementation 'org.assertj:assertj-core:3.23.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
}
tasks.named('test') {
useJUnitPlatform()
}