我正在使用 Maven、Maven checkstyle 插件、Jenkins 和 Jenkins checkstyle 插件。
我总共有 7 个项目。1 个父项目和 6 个子项目。
我有以下 3 种情况:
所有 project.n 父 pom 的 Checkstyle 报告我在标签中声明了 checkstyle 插件:
我运行
mvn clean site
命令它与 Maven 在 Eclipse 中双向工作。在詹金斯也是。
为所有 7 个项目提供检查样式报告。
除 2 个项目外的所有项目的 Checkstyle 报告。
我删除了父 pom 中的部分并添加了
我添加了剩下的 4 个项目,我在标签中声明了 checkstyle 插件。
它在 Eclipse 中工作,但在 Jenkins 中不工作。
请给出解决方案
我的代码:
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.10</version> <configuration> <configLocation>../parent-project/checkstyle.xml</configLocation> </configuration> </plugin> </plugins>
3.
- 我删除了父级中的 checkstyle 插件
- 我在与上述代码相同的 4 个需要的项目中添加了 checkstyle 插件。
在剩下的 2 个子项目中,我添加了这样的内容。
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.10</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins>
我运行'mvn clean site'
- 它按预期在 Maven 中工作,但在 Jenkins 中不起作用。
我所说的“不在 Jenkins 中工作”的意思是我在 Jenkins 中安装了 checkstyle 插件,在 Jenkins 工作中我选择了“发布 Checkstyle 分析结果”复选框。在场景 1 中,我可以在 jenkins 工作页面中看到 checkstyle 链接。如果我点击所有代码违规报告都会出现。在其他情况下 (2,3),Checkstyle 链接也不会出现。