web-dev-qa-db-ja.com

親モジュールでMavenプラグインのゴールを実行しますが、子では実行しません

buildnumber-maven-plugin を定義するプロファイルを使用してビルド番号を増分し、それをソース管理にチェックインするマルチモジュールmavenプロジェクトがあります。

親pom.xmlでプラグインを定義すると、すべての子ビルドでも同様に実行されます。

これが私の親のpom.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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.webwars</groupId>
  <artifactId>parent</artifactId>
  <packaging>pom</packaging>
  <properties>
    <buildNumber.properties>${basedir}/../parent/buildNumber.properties</buildNumber.properties>
  </properties>
  <version>1.0-SNAPSHOT</version>
  <name>Parent Project</name>
  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <debug>false</debug>
              <optimize>true</optimize>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>buildnumber-maven-plugin</artifactId>
            <version>1.0-beta-3</version>
            <executions>
              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>create</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <buildNumberPropertiesFileLocation>${buildNumber.properties}</buildNumberPropertiesFileLocation>
              <getRevisionOnlyOnce>true</getRevisionOnlyOnce>
              <doCheck>false</doCheck>
              <doUpdate>false</doUpdate>
              <format>{0, number}</format>
              <items>
                <item>buildNumber</item>
              </items>
            </configuration>
          </plugin>
          <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-scm-plugin</artifactId>
            <executions>
              <execution>
                <phase>install</phase>
                <goals>
                  <goal>checkin</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <basedir>${basedir}</basedir>
              <includes>buildNumber.properties</includes>
              <message>[Automated checkin] of ${basedir} Build version: ${major.version}.${minor.version}.${buildNumber}</message>
              <developerConnectionUrl>...</developerConnectionUrl>
            </configuration>
          </plugin>         
        </plugins>
      </build>
    </profile>
  </profiles>

  <modules>

    <module>../common</module>
    <module>../data</module>
    <module>../client</module>
    <module>../webplatform</module>
  </modules>
 ...
</project>
56
Dougnukem

Pomリファレンスの Plugins セクションに記載されているとおり:

GroupId:artifactId:versionの標準座標を超えて、プラグインを構成する要素があります。またはプラグインとの相互作用を構築します。

  • inherited:trueまたはfalse、このプラグイン構成を、このプラグインから継承するPOMに適用するかどうか。

したがって、<inherited>false</inherited> buildnumber-maven-plugin構成に追加して、子POMでの継承を回避します。

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>buildnumber-maven-plugin</artifactId>
        <version>1.0-beta-3</version>
        <inherited>false</inherited>
        ...
      </plugin>
93
Pascal Thivent

あなたは付け加えられます <inherited>false</inherited>プラグイン構成に追加して、子POMでの継承を回避します。

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>buildnumber-maven-plugin</artifactId>
        <version>1.0-beta-3</version>
        <inherited>false</inherited>
        ...
      </plugin>

または、プラグインに複数の実行がある場合は、継承されたタグを実行本体に追加することにより、継承される実行と継承されない実行を制御できます。

<plugin>
  <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
      <execution>
        <id>parent-only</id>
        <phase>initialize</phase>
        <inherited>false</inherited>
        <configuration>
          <target>
            <echo message="Echoed only by this module."/>
          </target>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
      <execution>
        <id>all-modules</id>
        <phase>initialize</phase>
        <inherited>true</inherited> <!-- Defaults to true, so you could leave this line out -->
        <configuration>
          <target>
            <echo message="Echoed in this module and each child module."/>
          </target>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
  </plugin>
24
Matthew Jaskula

組み込みのMavenオプションがあります:mvn --help ... -N,--non-recursive Do not recurse into sub-projects

8
Maksim

ここでの素晴らしい答えへの追加:Maven 2では実行ごとの継承が壊れていることに注意してください http://jira.codehaus.org/browse/MNG-3959

3
Michael-O

プラグインがカスタムプラグインであり、プラグインのMOJOコードにアクセスできる場合は、プラグインをaggregatorとしてマークできます。予想される動作がプラグインを使用するすべてのプロジェクトに適用できる場合。

Mojo API仕様 で述べたように、

このMojoにフラグを付けて、マルチモジュールで実行するようにフラグを立てます。つまり、モジュールとしてリストされているプロジェクトのセットでビルドを集約します。

例、

@Mojo(name = "createHF", inheritByDefault = false, aggregator = true)
public class CreateHFMojo extends AbstractMojo {

..

public void execute() throws MojoExecutionException, MojoFailureException {
 ....
}

..

}

github の詳細な例。

1