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 2349f6b commit a916f3fCopy full SHA for a916f3f
buildSrc/src/main/groovy/java-module.gradle
@@ -43,11 +43,14 @@ test {
43
// create a single "compile" task
44
tasks.register( "compile" ).configure {
45
dependsOn tasks.withType( JavaCompile )
46
+ dependsOn tasks.withType( ProcessResources )
47
}
48
49
tasks.withType( JavaCompile ).configureEach {javaCompile->
50
options.encoding = "UTF-8"
51
options.warnings false
52
+
53
+ dependsOn tasks.named( "spotlessApply" )
54
55
56
// To force the build produce the same byte-for-byte archives and hence make Hibernate Models build reproducible.
0 commit comments