4

コンパイルできないマルチモジュールの Maven プロジェクトがあります。ローカル ネットワークに Nexus リポジトリがあり、動作しています (IntelliJ Idea は、そのリポジトリにのみ存在する依存関係を解決できます)。Jetbrains TeamCity を使用してビルドしています。私がセットアップした他のいくつかのビルド構成がまだ機能しているので (同じ settings.xml を使用して)、TeamCity が機能していることはかなり確信しています。問題の原因となっている可能性があることについて、私は少し損をしています。これが私のpomファイルです:

親ポン:

<?xml version="1.0" encoding="UTF-8"?>
<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.product.plugins</groupId>
    <artifactId>plugin-parent</artifactId>
    <version>1.2-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>product-wireless-plugin</module>
        <module>product-paging-plugin</module>
    </modules>

    <distributionManagement>
        <repository>
            <id>releases</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <pluginRepositories>
        <pluginRepository>
            <id>autoincrement-versions-maven-plugin</id>
            <name>autoincrement-versions-maven-plugin</name>
            <url>http://autoincrement-versions-maven-plugin.googlecode.com/svn/repo</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>autoincrement-versions-maven-plugin</artifactId>
                <version>2.0-SNAPSHOT</version>
                <executions>
                    <execution>
                        <id>update-pom-versions</id>
                        <goals>
                            <goal>increment</goal>
                            <goal>commit</goal>
                        </goals>
                        <phase>compile</phase>
                        <configuration>
                            <autoIncrementVersion>true</autoIncrementVersion>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <configuration>
                    <testFailureIgnore>true</testFailureIgnore>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

製品ワイヤレスポン:

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>plugin-parent</artifactId>
        <groupId>com.company.product.plugins</groupId>
        <version>1.2-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.company.product.plugins</groupId>
    <artifactId>product-wireless-plugin</artifactId>
    <version>0.1.2</version>

    <distributionManagement>
        <repository>
            <id>releases</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <dependencies>
        <dependency>
            <groupId>com.company.product</groupId>
            <artifactId>product-common</artifactId>
            <version>0.9.1</version>
        </dependency>
    </dependencies>

</project>

製品ページポンポン:

<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>plugin-parent</artifactId>
        <groupId>com.company.product.plugins</groupId>
        <version>1.2-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.company.product.plugins</groupId>
    <artifactId>product-paging-plugin</artifactId>
    <version>0.1.2</version>

    <distributionManagement>
        <repository>
            <id>releases</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/releases/</url>
        </repository>
        <snapshotRepository>
            <id>snapshots</id>
            <url>http://192.168.2.192:8081/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    <dependencies>
        <dependency>
            <groupId>com.company.product</groupId>
            <artifactId>product-common</artifactId>
            <version>0.9.1</version>
        </dependency>
    </dependencies>

</project>

そして、私が得ているエラーは次のとおりです。

com.company.product.plugins:product-wireless-plugin [13:54:16][com.company.product.plugins:product-wireless-plugin] 「C:/TeamCity/buildAgent/work/40ac813105cf8bd7/」からのデータのインポートproduct-wireless-plugin/target/surefire-reports/TEST-*.xml' with 'surefire' processor [13:54:16][com.company.product.plugins:product-wireless-plugin] Surefire レポート ウォッチャー [13 :54:16][com.company.product.plugins:product-wireless-plugin] ダウンロード: repolocation/nexus/content/groups/public/com/company/product/product-parent/0.9.0/product-parent- 0.9.0.pom [13:54:16][com.company.product.plugins:product-wireless-plugin] プロジェクト product-wireless-plugin で目標を実行できませんでした: プロジェクト com.company.product の依存関係を解決できませんでした.plugins:product-wireless-plugin:jar:0.1.2: [com.company.product: の依存関係を収集できませんでした:product-common:jar:0.9.1 (コンパイル)]

これをデバッグしようとしている間、私はかなり途方に暮れています...誰か提案はありますか?

4

3 に答える 3

8

この種の問題のトラブルシューティングには、いくつかのアプローチ/ツールがあります。

  1. この「依存関係を解決できませんでした」というエラーの場合、ほとんどの場合、より詳細なエラー メッセージやスタック トレースがビルド ログの前に表示されます。Maven ログは実際には非常に詳細であり、ビルドの失敗から数画面上にある「ルート」エラー メッセージを検索する必要があります。

  2. -Xフラグを指定してビルドを再実行します。これはMavenコマンドラインスイッチのドキュメントです

  3. 別のオプションはmvn dependency:tree、推移的な依存関係の完全なグラフを検査するために使用することです。mvn help:effective-pomsettings.xml、アクティブなプロファイルなどを考慮した後、pom.xml を出力するもう 1 つの便利なツールです。同様にmvn help:active-profiles

于 2013-06-19T13:37:56.880 に答える
2

わかりました、@noahlz からの入力のおかげで問題を解決しました。-X フラグを使用してビルドをデバッグした後、「product-common」(product-parent) の親 pom が見つからないことがわかりました。Sonatype Nexus リポジトリを閲覧した後、新しいモジュールが追加されたときにビルド システムが親 pom の新しいバージョンのみを公開していることを発見しました。したがって、私の親 pom はバージョン 0.9.0 でしたが、リポジトリの最新バージョンは 0.6.1 でした。コンパイル時に親 pom (バージョン番号 0.9.0) にアクセスできたため、「product-common」ライブラリは正しくコンパイルされていたと思います。いずれにせよ、「product-common」の親 pom バージョンを変更して、リポジトリの最新のものを指すようにすると、プラグインのビルドの問題が解決しました。

于 2013-06-19T13:06:32.597 に答える