Skip to content

Commit 24ac2f3

Browse files
reitzmichnichtfiliphr
authored andcommitted
Update chapter-2-set-up.asciidoc
See official maven doc on this: https://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-compiler-arguments.html Otherwise for example intellij doesn't recognize the compiler options on maven import
1 parent 164535e commit 24ac2f3

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

documentation/src/main/asciidoc/chapter-2-set-up.asciidoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,15 @@ When invoking javac directly, these options are passed to the compiler in the fo
187187
<!-- due to problem in maven-compiler-plugin, for verbose mode add showWarnings -->
188188
<showWarnings>true</showWarnings>
189189
<compilerArgs>
190-
<compilerArg>
190+
<arg>
191191
-Amapstruct.suppressGeneratorTimestamp=true
192-
</compilerArg>
193-
<compilerArg>
192+
</arg>
193+
<arg>
194194
-Amapstruct.suppressGeneratorVersionInfoComment=true
195-
</compilerArg>
196-
<compilerArg>
195+
</arg>
196+
<arg>
197197
-Amapstruct.verbose=true
198-
</compilerArg>
198+
</arg>
199199
</compilerArgs>
200200
</configuration>
201201
</plugin>

0 commit comments

Comments
 (0)