如何使 Java maven 构建因编译器警告而失败?
2022-09-01 22:42:35
我正在尝试:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Werror</compilerArgument>
<fork>true</fork>
</configuration>
</plugin>
但没有喜悦。现在有什么想法可以像这篇博客文章中建议的那样,在这样的错误上获得中世纪吗?