This commit is contained in:
nora 2023-01-09 09:37:33 +01:00
parent 9900001888
commit 84750781f2
9 changed files with 636 additions and 0 deletions

26
minmax-java/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()
}