如何在 Maven 项目中使用 -Xlint:unchecked 进行编译?

2022-08-31 14:07:18

在 NetBeans 7.2 中,我找不到如何在 Maven 项目中使用 -Xlint:unchecked 进行编译。在 Ant 项目下,您可以通过转到“项目属性->编译”来更改编译器标志,但 Maven 项目似乎没有任何此类选项。

有没有办法配置IDE以使用Maven使用此类标志进行编译?


答案 1

我想你可以在你的pom中设置编译器参数.xml。请参考此 http://maven.apache.org/plugins/maven-compiler-plugin/examples/pass-compiler-arguments.html

 <compilerArgument>-Xlint:unchecked</compilerArgument>

答案 2

我想详细阐述@Nishant的答案。标记需要位于标记内部。下面是一个完整的示例:compilerArgumentplugin/configuration

<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.3</version>
    <configuration>
      <source>1.8</source>
      <target>1.8</target>
      <testSource>1.8</testSource>
      <testTarget>1.8</testTarget>
      <compilerArgument>-Xlint:unchecked</compilerArgument>
    </configuration>
  </plugin>
</plugins>

推荐