mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2024-11-25 02:19:45 +01:00
22 lines
301 B
Groovy
22 lines
301 B
Groovy
plugins {
|
|
// Apply the java Plugin to add support for Java.
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
// Use Maven Central for resolving dependencies.
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation libs.junit4
|
|
}
|
|
|
|
java {
|
|
compileJava.options.encoding = 'UTF-8'
|
|
}
|
|
|
|
test {
|
|
useJUnit()
|
|
}
|