Question

I've a maven project with a maven compiler plugin, and I want use -Xlint:overrides as option to java compiler, so I added this line to maven compiler plugin <compilerArgument>-Xlint:overrides</compilerArgument> but I've already need to use unchecked options and I need only these two parameters, how can I add to parameters to Xlint? -Xlint:unchecked overrides doesn't work... maven returns build faulire. Can you help me?

Was it helpful?

Solution

If you have maven 3.1 you can use

<compilerArgs>
  <arg>arg 1</arg>
  <arg>arg 2</arg>
</compilerArgs>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top