web-dev-qa-db-ja.com

m2eライフサイクルマッピングが見つかりません

ここで説明するソリューションを使用して、厄介な「ライフサイクル構成でカバーされないプラグインの実行:org.codehaus.mojo:build-helper- pom.xmlに次のプラグインを配置すると、maven-plugin:1.7:add-source(execution:default、phase:generate-sources) "

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
    <execution>
        <phase>generate-sources</phase>
        <goals><goal>add-source</goal></goals>
        <configuration>
            <sources>
                <source>src/bootstrap/Java</source>
            </sources>
        </configuration>
    </execution>
</executions>
</plugin>

しかし、mvn clean installを実行すると、次のようになります:

理由:POM 'org.Eclipse.m2e:lifecycle-mapping'がリポジトリーで見つかりません:リポジトリーから成果物をダウンロードできません

誰かがm2eとmavenを幸せにする方法の手がかりを持っていますか?

56

org.Eclipse.m2e:lifecycle-mappingプラグインは実際には存在しません。 <build><pluginManagement>pom.xmlセクションから使用する必要があります。そうすれば、Mavenでは解決されませんが、m2eで読み取ることができます。

しかし、問題に対するより実用的な解決策は、Eclipseにm2eビルドヘルパーコネクタをインストールすることです。 Window> Preferences> Maven> Discovery> Open Catalogからインストールできます。そうすれば、build-helper-maven-plugin:add-sourcesを変更することなくEclipseでpom.xmlが呼び出されます。

110
Fred Bricon

build/pluginManagementセクションを使用してみてください。 :

<pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.Eclipse.m2e</groupId>
            <artifactId>lifecycle-mapping</artifactId>
            <version>1.0.0</version>
            <configuration>
                <lifecycleMappingMetadata>
                    <pluginExecutions>
                        <pluginExecution>
                            <pluginExecutionFilter>
                                <groupId>org.bsc.maven</groupId>
                                <artifactId>maven-processor-plugin</artifactId>
                                <versionRange>[2.0.2,)</versionRange>
                                <goals>
                                    <goal>process</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <execute />
                            </action>
                        </pluginExecution>
                    </pluginExecutions>                         
                </lifecycleMappingMetadata>
            </configuration>
        </plugin>
    </plugins>
</pluginManagement>

Eclipse内のインクリメンタルコンパイル中にバンドルマニフェストを生成する例を次に示します。

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.Eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.Apache.felix</groupId>
                                    <artifactId>maven-bundle-plugin</artifactId>
                                    <versionRange>[1.0.0,)</versionRange>
                                    <goals>
                                        <goal>manifest</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <execute />
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <encoding>UTF-8</encoding>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.Apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>2.3.7</version>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                </instructions>
            </configuration>
            <executions>
                <execution>
                    <id>manifest</id>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>manifest</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

versionRangeは必須です。省略すると、m2e(1.1.0以降)はNullPointerExceptionをスローします。

11
Hendy Irawan

このダミープラグインを使用できます。

mvn archetype:generate -DgroupId=org.Eclipse.m2e -DartifactId=lifecycle-mapping -Dversion=1.0.0 -DarchetypeArtifactId=maven-archetype-mojo

プロジェクトを生成した後、インストール/デプロイします。

9

方法は次のとおりです。デフォルトの<build>セクションの代わりに、m2eのライフサイクルマッピングプラグインを別のプロファイルに配置します。プロファイルは、Eclipseのビルド中に、m2eプロパティの存在によって(settings.xmlでの手動アクティブ化の代わりに)自動アクティブ化されます。これはm2eのケースを処理しますが、コマンドラインのmavenは警告なしでプロファイルとm2eライフサイクルマッピングプラグインをスキップするだけで、誰もが満足しています。

<project>
  ...
  <profiles>
    ...
    <profile>
      <id>m2e</id>
      <!-- This profile is only active when the property "m2e.version"
        is set, which is the case when building in Eclipse with m2e. -->
      <activation>
        <property>
          <name>m2e.version</name>
        </property>
      </activation>
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.Eclipse.m2e</groupId>
              <artifactId>lifecycle-mapping</artifactId>
              <version>1.0.0</version>
              <configuration>
                <lifecycleMappingMetadata>
                  <pluginExecutions>
                    <pluginExecution>
                      <pluginExecutionFilter>
                        <groupId>...</groupId>
                        <artifactId>...</artifactId>
                        <versionRange>[0,)</versionRange>
                        <goals>
                          <goal>...</goal>
                        </goals>
                      </pluginExecutionFilter>
                      <action>

                        <!-- either <ignore> XOR <execute>,
                          you must remove the other one. -->

                        <!-- execute: tells m2e to run the execution just like command-line maven.
                          from m2e's point of view, this is not recommended, because it is not
                          deterministic and may make your Eclipse unresponsive or behave strangely. -->
                        <execute>
                          <!-- runOnIncremental: tells m2e to run the plugin-execution
                            on each auto-build (true) or only on full-build (false). -->
                          <runOnIncremental>false</runOnIncremental>
                        </execute>

                        <!-- ignore: tells m2Eclipse to skip the execution. -->
                        <ignore />

                      </action>
                    </pluginExecution>
                  </pluginExecutions>
                </lifecycleMappingMetadata>
              </configuration>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
    </profile>
    ...
  </profiles>
  ...
</project>
6
Robin479

私はm2eでこのための(些細な)バグをオープンしました。警告メッセージを永久に消したい場合は投票してください...

https://bugs.Eclipse.org/bugs/show_bug.cgi?id=36787

3
Ben

私は同じ問題を抱えていました:

Eclipseでbuild-helper-maven-plugin:1.8:add-sourceを処理するマーケットプレイスエントリが見つかりません。詳細についてはヘルプを参照してください。

[ウィンドウ]> [設定]> [Maven]> [検出]> [カタログを開く]ボタンをクリックすると、接続が報告されません。

Centos 6.4およびOSXで7u40から7u45に更新すると、問題が修正されます。

3
user145880

Mavenはm2eのライフサイクルマッピングアーティファクトをダウンロードしようとしています。M2Eはこれを使用して、Eclipse内でプラグインを処理する方法を決定します(ソースフォルダーの追加など)。何らかの理由で、このアーティファクトをダウンロードできません。インターネットに接続していますか?リポジトリから他のアーティファクトをダウンロードできますか?プロキシ設定?

Mavenの詳細については、M2Eデバッグ出力をオンにしてみてください(設定/ Maven /デバッグ出力チェックボックス)。リポジトリからダウンロードできない理由に関する詳細が表示される場合があります。

1
prunge

m2e 1.7では ライフサイクルマッピングメタデータの新しい構文 が導入され、この警告は発生しなくなりました。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
    <execution>

        <!-- This executes the goal in Eclipse on project import.
             Other options like are available, eg ignore.  -->
        <?m2e execute?>

        <phase>generate-sources</phase>
        <goals><goal>add-source</goal></goals>
        <configuration>
            <sources>
                <source>src/bootstrap/Java</source>
            </sources>
        </configuration>
    </execution>
</executions>
</plugin>

プラグイン構成が欠落しているために発生します( vaadinのデモpom.xml コメントによる):

このプラグインの構成は、Eclipse m2e設定のみを保存するために使用されます。 Mavenビルド自体には影響しません。

<pluginManagement>
    <plugins>
        <!--This plugin's configuration is used to store Eclipse m2e ettings only. It has no influence on the Maven build itself.-->
        <plugin>
            <groupId>org.Eclipse.m2e</groupId>
            <artifactId>lifecycle-mapping</artifactId>
            <version>1.0.0</version>
            <configuration>
                <lifecycleMappingMetadata>
                    <pluginExecutions>
                        <pluginExecution>
                            <pluginExecutionFilter>
                                <groupId>com.vaadin</groupId>
                                <artifactId>
                                    vaadin-maven-plugin
                                </artifactId>
                                <versionRange>
                                    [7.1.5,)
                                </versionRange>
                                <goals>
                                    <goal>resources</goal>
                                    <goal>update-widgetset</goal>
                                    <goal>compile</goal>
                                    <goal>update-theme</goal>
                                    <goal>compile-theme</goal>
                                </goals>
                            </pluginExecutionFilter>
                            <action>
                                <ignore></ignore>
                            </action>
                        </pluginExecution>
                    </pluginExecutions>
                </lifecycleMappingMetadata>
            </configuration>
        </plugin>
    </plugins>
</pluginManagement>
0
falsarella