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 28988a9 commit cf6d961Copy full SHA for cf6d961
gradle/java-module.gradle
@@ -185,10 +185,13 @@ tasks.withType( JavaCompile ) {
185
options.fork = true
186
options.forkOptions.memoryMaximumSize = '768m'
187
188
-// javaCompileTask.options.compilerArgs += [
+ options.compilerArgs += [
189
+ // disable adding @Generated annotation in the logger impls to make
190
+ // the logging annotation processor create the same sources each time.
191
+ "-Aorg.jboss.logging.tools.addGeneratedAnnotation=false"
192
// "-nowarn",
193
// "-encoding", "UTF-8"
-// ]
194
+ ]
195
}
196
197
0 commit comments