构建Jenkins插件时如何获取编译器警告

我正在编写Jenkins插件,但是Java和Maven都是新手。

当我在intelliJ中构建插件时,我会收到所有希望看到的编译器警告(例如,弃用警告),但是我找不到通过命令行显示这些内容的编译方法(例如,使用mvn

hpi:hpi / mvn编译)

我尝试将以下行添加到Maven设置文件的maven-compiler-plugin部分,但无济于事:

<showDeprecation>true</showDeprecation>

<showWarnings>true</showWarnings>

这样做的最终目的是在jenkins上编译插件并将警告输入警告插件。

回答:

您可以尝试以下两种建议:

1)添加编译器参数-Xlint:all:

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<version>3.0</version>

<configuration>

<source>1.6</source>

<target>1.6</target>

<compilerArgument>-Xlint:all</compilerArgument>

<showWarnings>true</showWarnings>

<showDeprecation>true</showDeprecation>

</configuration>

</plugin>

2)尝试通过命令行传递参数,如下所示:

mvn clean install -Dmaven.compiler.showDeprecation=true

祝好运!

以上是 构建Jenkins插件时如何获取编译器警告 的全部内容, 来源链接: utcz.com/qa/407193.html

回到顶部