質問

Maven 3.0です。私は新しいプロジェクトを作成しています:

mvn archetype:create

次に、ファイルを作成しています site/site.xml:

<project name="foo">
  <body>
    <menu name="Overview">
      <item name="Introduction" href="index.html" />
    </menu>
    <menu ref="reports" />
  </body>
</project>

次に、レポートプラグインを追加します pom.xml:

<reporting>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-project-info-reports-plugin</artifactId>
      <version>2.1.1</version>
    </plugin>
  </plugins>
</reporting>

それから私は走ります mvn site そして、それは言います "BUILD SUCCESS". 。しかし、プロジェクトサイトにレポートは表示されません(メニュー項目のレポートはありません)。私は何が間違っているのですか?

役に立ちましたか?

解決

Maven 3レポート 異なります.

[...]
<build>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-site-plugin</artifactId>
    <version>3.0-beta-2</version>
    <configuration>
      <reportPlugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-project-info-reports-plugin</artifactId>
          <version>2.2</version>
          <reports>
            <report>cim</report>
            <report>issue-tracking</report>
          </reports>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-javadoc-plugin</artifactId>
          <version>2.2</version>
        </plugin>
      </reportPlugins>
    </configuration>
  </plugin>
</build>
[...]

他のヒント

このPOMは動作します(site.xmlファイルを定義していなくても)

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>it.cucchiara</groupId>
    <artifactId>test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>test</name>
    <url>http://maven.apache.org</url>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-project-info-reports-plugin</artifactId>
                <version>2.1.1</version>
            </plugin>
        </plugins>
    </reporting>
</project>

はい、Maven 3のレポートは異なります。ヒント:Maven 3の場合、バージョン3.0-BETA-2でMaven-Site-Pluginを使用することができます(サイトプラグインバージョン3.0-BETA-3は、Maven 3.0-Beta-3を使用してコンピューターでエラーを実行します)。これは正常に動作します。しかし、レポートの場合:レポートを変更または変更することで、追加のレポートの古い方法を使用する必要があります。

ここに私のpom.xmlの興味深い部分があります。

        <build>
        :
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-site-plugin</artifactId>
          <version>3.0-beta-2</version>
          <executions>
            <execution>
            <id>createsite</id>
            <phase>package</phase>
            <goals>
                <goal>site</goal>
            </goals>
            <configuration>
                <reportPlugins>
                    <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-project-info-reports-plugin</artifactId>
                    <version>2.2</version>
                        <reportSets>
                        <reportSet>
                        <reports>
                          <report>dependencies</report>
                          <report>license</report>
                          <report>scm</report>
                          <report>project-team</report>
                        </reports>
                        </reportSet>
                        </reportSets>
                    </plugin>
                </reportPlugins>
            </configuration>
            </execution>
         </executions>
      </plugin>
      :
    <build>

    <reporting>
      <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-changes-plugin</artifactId>
        <version>2.3</version>
        <reportSets>
        <reportSet>
        <reports>
          <report>changes-report</report>
        </reports>
        </reportSet>
        </reportSets>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-changelog-plugin</artifactId>
          <version>2.2</version>
        </plugin>
        </plugins>
    </reporting>
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top