0

最新の Spring Batch Admin-1.3.0-RELEASE を取得し、ビルドしてデプロイしようとしています。Eclipseでは、Maven Projectsとしてインポートしました。maven でビルドしようとすると、pom.xml ファイルからこれらの行を削除しない限り失敗します。

        <plugin>
            <groupId>com.springsource.bundlor</groupId>
            <artifactId>com.springsource.bundlor.maven</artifactId>
        </plugin>

そうしないと、エラーが発生します

[ERROR] Failed to execute goal com.springsource.bundlor:com.springsource.bundlor.maven:1.0.0.RELEASE:bundlor (bundlor-transform) on project spring-batch-admin-resources: Execution bundlor-transform of goal com.springsource.bundlor:com.springsource.bundlor.maven:1.0.0.RELEASE:bundlor failed: Plugin com.springsource.bundlor:com.springsource.bundlor.maven:1.0.0.RELEASE or one of its dependencies could not be resolved: The following artifacts could not be resolved: org.objectweb.asm:com.springsource.org.objectweb.asm.tree:jar:3.1.0, org.objectweb.asm:com.springsource.org.objectweb.asm.commons:jar:3.1.0, org.objectweb.asm:com.springsource.org.objectweb.asm:jar:3.1.0: Could not find artifact org.objectweb.asm:com.springsource.org.objectweb.asm.tree:jar:3.1.0 in internal-repository (http://nexus-server:8082/nexus/content/groups/released) -> [Help 1]
4

1 に答える 1

0

ここで述べたように、依存関係を検索しながら、maven にそこも参照するように指示するには、pom.xml に spring リポジトリを追加する必要があります。

于 2015-01-02T21:48:55.410 に答える