我尝试将maven-checkstyle-plugin
添加到我的项目中,但没有产生任何结果:
<project>
....
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<configLocation>google_checks.xml</configLocation>
</configuration>
</plugin>
</plugins>
</build>
</project>
mvn checkstyle:checkstyle
或mvn checkstyle:check
会导致:
[INFO] You have 0 Checkstyle violations.
这实际上是不正确的,因为我在代码中添加了显式的违规。
所以我猜checkstyle没有在我的代码上正确运行分析器(它在/src/main/resources
中是正常的)。
我是否必须将google_checks.xml
文件显式地添加到我的类路径中?
1条答案
按热度按时间5t7ly7z51#
如果违规是警告,则需要添加: