1

我正在运行生成 checkstyle 静态代码分析报告的 Maven 应用程序“DemoApp”。当我在eclipse上运行它时它可以正常工作,但是当我在jenkins上构建它时会出现以下错误

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-site plugin:3.3:site (default-site) on project DemoApp: Execution default-site of goal org.apache.maven.plugins:maven-site-plugin:3.3:site failed: A required class was missing while executing org.apache.maven.plugins:maven-site-plugin:3

和以下例外:

java.lang.NoClassDefFoundError: org/apache/maven/doxia/siterenderer/DocumentContent 
Caused by: java.lang.ClassNotFoundException: org.apache.maven.doxia.siterenderer.DocumentContent

我在 pom.xml 中添加了以下插件

    <build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>validate</id>
                        <phase>validate</phase>
                        <configuration>
                            <configLocation>src/main/resources/google_checks.xml</configLocation>
                            <encoding>UTF-8</encoding>
                            <consoleOutput>true</consoleOutput>
                            <failsOnError>false</failsOnError>
                            <linkXRef>false</linkXRef>
                        </configuration>
                        <goals>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.7.1</version>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                <version>3.0.0</version>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

<reporting>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-checkstyle-plugin</artifactId>
            <version>3.0.0</version>
            <reportSets>
                <reportSet>
                    <reports>
                        <report>checkstyle</report>
                    </reports>
                </reportSet>
            </reportSets>
        </plugin>
    </plugins>
</reporting>
4

1 回答 1

1

我不知道这是否解决了您当前的问题,但一般来说:内部声明<pluginManagement>实际上并没有在构建过程中设置任何内容,而是作为(子)项目通用声明的集中位置:

[...] 这仅配置在子级或当前 POM 中的 plugins 元素中实际引用的插件。

请参阅错误消息中的不同版本:maven-site-plugin:3.3和声明中:<version>3.7.1

要将这样的插件声明添加到构建过程中,您必须在以下位置声明/引用它:

  <build>
    ...
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-site-plugin</artifactId>
      </plugin>
    </plugins>
    ...
  </build>

这同样适用于maven-checkstyle-plugin

如果要向控制台报告或构建失败,则必须checkstyle::check<build>元素添加执行并配置所需的任何选项。

于 2019-04-11T08:52:15.950 回答