Gruppe-02-clone/Projekte/buildSrc/src/main/groovy/buildlogic.java-common-conventions.gradle
2024-09-18 17:04:31 +02:00

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()
}