1

Maven + m2eclipse で SpringSource Tool Suite (STS) を使用しています。最新のプロジェクトで、既存の Maven プロジェクトを SVN から STS に正しくインポートする際に問題に直面しています。を使用するimport -> Maven -> 'existing Maven project'と、プロジェクトはインポートされますが、次の問題が発生します。

  • src/main/javaとはsrc/test/java、ソース フォルダーとして選択されません。ソース フォルダーとしてSTS が構成srcされ、main/test がパッケージ名に追加されます。
  • Maven 依存ライブラリは、Java ビルド パスに追加されません。

ソース フォルダーを手動で修正することはできますが、「Maven 管理の依存関係」ライブラリをビルド パスに追加しようとすると、「Maven プロジェクト設定を使用して Maven 依存関係の解決を構成する」というメッセージが表示され、ライブラリが追加されません。私が設定できると思われる唯一のMavenプロジェクト設定は、アクティブなプロファイルと「ワークスペースプロジェクトからの依存関係を解決する」(チェックされている)であり、どちらも違いはないようです。

Maven 管理の依存関係を追加する Maven プロジェクトの設定

コマンドラインから実行するmvn installと、プロジェクトは正常にビルドされます。実行mvn eclipse:eclipseしてから STS にインポートすると、すべてが期待どおりに機能しますが、もちろん、pom を更新するたびにこれを再実行する必要があり、これは望ましくありません。

mvn eclipse:eclipse.classpath を実行して手動で更新し、m2eclipse 依存関係エントリを追加M2_REPOして追加した依存関係を排除することで、この問題を回避しました。eclipse:eclipse

<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
  <attributes>
    <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
  </attributes>
</classpathentry>

次に、既存の Maven プロジェクトをインポートすると、期待どおりに機能しました。eclipse:ecpliseただし、これはハックであり、m2eclipse を使用する場合に、実行が他にどのような影響を与えるかはわかりません。

私は他のMavenプロジェクトに取り組んできましたが、それらを正しくインポートする際に問題はありませんでした。

関連する可能性のある情報:

  • これは webapp プロジェクトです。
  • Subversion リポジトリには、pom.xmlsrcフォルダーのみが含まれます。
  • 外部 Maven インストールを使用しており、バージョン 3.0.3 です。
  • アーティファクトのダウンロードには、オンサイト Artifactory リポジトリを使用します

私が試したこと:

  • SVN からローカル ディスクにダウンロードし、既存の Maven プロジェクトのインポートを使用して STS にインポートします。
  • SVN から STS にプロジェクトをインポートし、構成 -> Maven の性質を有効にする
  • 実行mvn eclipse:eclipseしてからインポートします (機能しますが、m2e のクラスパスを手動で編集する必要があります)
  • 検索stackoverflowは、非常によく似たこの質問を見つけましたが、答えは私の問題を解決していないようです。

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/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.company.group</groupId>
    <artifactId>artifact</artifactId>
    <version>1.0.1-SNAPSHOT</version>
    <packaging>war</packaging>
    <name>My Project</name>
    <description>My Project</description>

    <properties>
        <java-version>1.6</java-version>
        <org.springframework-version>3.1.0.RELEASE</org.springframework-version>
        <!-- Lots of other versions omitted -->
    </properties>

    <repositories>
        <repository>
            <id>repoId</id>
            <name>repoName</name>
            <url>http://fake.company.com/artifactory/repo</url>
            <layout>default</layout>
        </repository>
    </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repoId</id>
            <name>repoName</name>
            <url>http://fake.company.com/artifactory/repo</url>
        </pluginRepository>
    </pluginRepositories>

    <!-- Configurations required for deploy plugin. Artifacts are deployed to 
        artifactory -->
    <distributionManagement>
        <repository>
            <id>repoId</id>
            <name>repoName-releases</name>
            <url>http://fake.company.com/artifactory/apps-releases-local</url>
        </repository>
        <snapshotRepository>
            <id>repoId</id>
            <name>repoName-snapshots</name>
            <url>http://fake.company.com/artifactory/apps-snapshots-local</url>
        </snapshotRepository>
    </distributionManagement>

    <scm>
        <connection>scm:svn:https://fake.company.com/svn/fake-repo/trunk</connection>
        <developerConnection>scm:svn:https://fake.company.com/svn/fake-repo/trunk</developerConnection>
        <url>https://fake.company.com/svn/fake-repo/trunk</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <version>${org.springframework-version}</version>
        </dependency>
        <!-- Lots of other dependencies omitted -->
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>**/TestUtil.java</exclude>
                    </excludes>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <verbose>true</verbose>
                    <source>${java-version}</source>
                    <target>${java-version}</target>
                    <compilerVersion>${java-version}</compilerVersion>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <configuration>
                    <warName>war-name</warName>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>install</id>
                        <phase>install</phase>
                        <goals>
                            <goal>sources</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <formats>
                        <format>html</format>
                    </formats>
                    <instrumentation>
                        <ignores>
                            <ignore>path/**/*Test.class</ignore>
                        </ignores>
                        <excludes>
                            <exclude>path/Constants.class</exclude>
                            <exclude>path/*.class</exclude>
                        </excludes>
                    </instrumentation>
                    <check>
                        <haltOnFailure>false</haltOnFailure>
                        <totalBranchRate>25</totalBranchRate>
                        <totalLineRate>41</totalLineRate>
                        <packageLineRate>25</packageLineRate>
                        <packageBranchRate>15</packageBranchRate>
                    </check>
                </configuration>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>cobertura</goal>
                            <goal>check</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.cxf</groupId>
                <artifactId>cxf-codegen-plugin</artifactId>
                <version>${org.apache.cxf-version}</version>
                <executions>
                    <execution>
                        <id>generate-sources</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
                            <wsdlOptions>
                                <wsdlOption>
                                    <wsdl>${basedir}/src/main/resources/wsdl/automation.wsdl</wsdl>
                                </wsdlOption>
                            </wsdlOptions>
                        </configuration>
                        <goals>
                            <goal>wsdl2java</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>generate-sources</phase>
                        <goals>
                            <goal>add-source</goal>
                        </goals>
                        <configuration>
                            <sources>
                                <source>target/generated/cxf</source>
                            </sources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <additionalProjectnatures>
                        <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
                        <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>
                    </additionalProjectnatures>
                    <additionalBuildcommands>
                        <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
                    </additionalBuildcommands>
                </configuration>
            </plugin>
        </plugins>
        <pluginManagement>
            <plugins>
                <!--This plugin's configuration is used to store Eclipse m2e settings 
                    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>org.apache.cxf</groupId>
                                        <artifactId>
                                            cxf-codegen-plugin
                                        </artifactId>
                                        <versionRange>
                                            [${org.apache.cxf-version},)
                                        </versionRange>
                                        <goals>
                                            <goal>wsdl2java</goal>
                                        </goals>
                                    </pluginExecutionFilter>
                                    <action>
                                        <ignore />
                                    </action>
                                </pluginExecution>
                                <pluginExecution>
                                    <pluginExecutionFilter>
                                        <groupId>org.apache.maven.plugins</groupId>
                                        <artifactId>maven-compiler-plugin</artifactId>
                                        <versionRange>[2.3.2,)</versionRange>
                                        <goals>
                                            <goal>compile</goal>
                                            <goal>testCompile</goal>
                                        </goals>
                                    </pluginExecutionFilter>
                                    <action>
                                        <ignore />
                                    </action>
                                </pluginExecution>
                            </pluginExecutions>
                        </lifecycleMappingMetadata>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
    <profiles>
        <!-- Deployment profiles omitted -->
    </profiles>
</project>

誰もが次の方法についてアイデアを持っていますか?

  1. m2eclipse のインポートが正しく機能するようにするには? また
  2. プロジェクトの作成/変換後にMaven管理の依存関係をビルドパスに追加できるようにSTSを構成しますか?
4

2 に答える 2

1

次のセクション:

                           <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.apache.maven.plugins</groupId>
                                    <artifactId>maven-compiler-plugin</artifactId>
                                    <versionRange>[2.3.2,)</versionRange>
                                    <goals>
                                        <goal>compile</goal>
                                        <goal>testCompile</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore />
                                </action>
                            </pluginExecution>

ビルドで Java コンパイラを無効にするという不幸な結果をもたらします。それを取り除くと、物事がうまくいくと思います。

私もこれを見ます:

                   <projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature>

これはグルーヴィーなプロジェクトですか?その場合、gmaven または groovy-eclipse-compiler を使用していますか?

于 2012-07-23T03:53:36.273 に答える
0

私はこの問題を数回経験しましたが、解決策がアンドリューの答えの精神にあるたびに、mavenが受け入れるがm2eclipse barfsがオンになっているpomのセクションがあります。

したがって、プロジェクトを正常に mavenize できるようになるまで、pom の一部を 1 つずつ削除することをお勧めします。maven -> update configuration各 pom edit の後、正常に動作するまで実行を続けてください。私は通常、最も疑わしい (つまり、最も複雑な) ものから始めて、プラグイン構成タグ ブロックを一度に 1 つずつ削除することから始めます。

Mavenize が完了したら、pom を元に戻すことができ、期待どおりに動作するはずです。

実行した後、問題のある構成を調査して、「適切な」修正が何であるかを把握しようとします(とにかくm2eclipseによると)。

質問に投稿した回避策は一時的に機能し、マイナスの副作用を発見したことはありませんが、この解決策はハッキングが少なく、問題を完全に分離して解決するのに役立ちます.

于 2013-01-04T17:09:34.717 に答える