1
0

Projekt Alien Defence von Schick&Kannix eingekauft

This commit is contained in:
Trutz
2021-04-12 17:09:53 +02:00
parent 5f0fd577e9
commit 488bb78d8b
85 changed files with 3994 additions and 2 deletions
+37
View File
@@ -0,0 +1,37 @@
plugins {
id 'java'
}
group 'de.oszimt.ls'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}
/**
* 1st approach: Setting encoding during compilation in Java and Test classes
*/
compileJava.options.encoding = "UTF-8"
compileTestJava.options.encoding = "UTF-8"
/**
* 2nd approach: Setting encoding during compilation in Java and Test classes
*/
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}
tasks.withType(Test) {
systemProperty "file.encoding", "UTF-8"
}