We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ea600 commit b087839Copy full SHA for b087839
1 file changed
build.gradle
@@ -36,10 +36,16 @@ subprojects {
36
}
37
38
39
+ // keep current time stamps in tar
40
tasks.withType(Tar).configureEach {
41
preserveFileTimestamps = true
42
43
44
+ // fix or errorprone on java 21
45
+ tasks.withType(JavaCompile).configureEach {
46
+ options.compilerArgs += "-XDaddTypeAnnotationsToSymbol=true"
47
+ }
48
+
49
test {
50
useJUnitPlatform()
51
0 commit comments