mirror of
https://github.com/Noratrieb/minmax.git
synced 2026-01-14 15:25:08 +01:00
32 lines
No EOL
528 B
Groovy
32 lines
No EOL
528 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'ch.bbw.m411'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes 'Main-Class': 'ch.bbw.m411.connect4.Connect4ArenaMain'
|
|
}
|
|
}
|
|
|
|
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()
|
|
} |