Skip to content

Commit 92a1b98

Browse files
heoelriporunov
authored andcommitted
Refactor compiler arguments in pom.xml to use arg syntax for maximum errors
Signed-off-by: Heyko Oelrichs <[email protected]>
1 parent 7f4c78d commit 92a1b98

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,10 +377,9 @@
377377
<configuration>
378378
<source>${compiler.source}</source>
379379
<target>${compiler.target}</target>
380-
<compilerArguments>
381-
<Xmaxerrs>500</Xmaxerrs>
382-
</compilerArguments>
383380
<compilerArgs>
381+
<arg>-Xmaxerrs</arg>
382+
<arg>500</arg>
384383
<arg>-Xlint:unchecked</arg>
385384
</compilerArgs>
386385
</configuration>

0 commit comments

Comments
 (0)