This commit is contained in:
nora 2023-01-09 09:35:06 +01:00
parent 7a3dd4b7e9
commit d5ef605fd0
10 changed files with 0 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()
}