We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a280d commit b91f9e6Copy full SHA for b91f9e6
build.gradle
@@ -63,6 +63,17 @@ subprojects {
63
targetCompatibility = JavaVersion.VERSION_17
64
}
65
66
+ compileTestJava {
67
+ options.encoding = 'UTF-8'
68
+
69
+ // Makes spotlessApply task run on every compile/build.
70
+ dependsOn 'spotlessApply'
71
72
+ // Nails the Java-Version of every Subproject
73
+ sourceCompatibility = JavaVersion.VERSION_17
74
+ targetCompatibility = JavaVersion.VERSION_17
75
+ }
76
77
spotless {
78
java {
79
// Excludes build folder since it contains generated java classes.
@@ -72,7 +83,6 @@ subprojects {
83
84
85
test {
- systemProperty 'file.encoding', 'UTF-8'
86
useJUnitPlatform()
87
88
0 commit comments