1

プロジェクトのフォルダとファイルがあるディレクトリに移動して実行しましたが、次のように表示されmvn cleanますmvn install

   [INFO] Unable to find resource ‘org.eclipse.core:org.eclipse.core.commands:pom:3.5.0.I20090525-2000’ in repository central (http://repo1.maven.org/maven2)
    [INFO]-------
    [ERROR] BUILD ERROR
    [INFO]---------
    [INFO] Failed to resolve artifact.

Couldn’t find a version in [1.0.0-v20070606] to match range [1.0.0,2.0.0) org.eclipse.equinox:app:jar:null from the specified remote repositories:
central (http://repo1.maven.org/maven2),
ABC.Pricing.R2(http://mksrvsub.XXXXX/nexus/content/repositories/ABC.pricing.R2),
abc-snapshots(http://artifactory-tmp.xxxxx:8081/nexus/content/groups/repor),
abc123 (http://mksrvsub.XXXXX/nexus/content/repositories/Release),
andromeda (http://artifactory-tmp.xxxxxxx:8081/nexus/content/repositories/andromeda),

path to dependency:
com.xxx:MyServcies:jar:7.7.0-SNAPSHOT
com.xxx:MyBaseServcies:jar:7.7.0-SNAPSHOT
com.xxx:MyStrutsServcies:jar:7.7.0-SNAPSHOT
com.yyy.SomeSpecialService:jar:7.7.0-SNAPSHOT
org.eclipse:get:jar:3.2.100-v20070530
org.eclipse.core:runtime:jar:3.3.100-v20070530

プロジェクトpomファイル:リンク

情報:Javaバージョン:1.6.0_26

OS名:windows xp、バージョン:5.1 arch:x86、

Apache Maven 2.2.1(r801777; 2009-08-06 15:16:01-0400)

4

1 に答える 1

1

ご覧のとおり、Mavenは依存関係org.eclipse.core.commandsバージョン3.5.0.I20090525-2000を解決できません。リポジトリhttp://repo1.maven.org/maven2には、このバージョン番号のアーティファクトは含まれていません。したがって、pomファイルにリポジトリの説明を追加する必要があります。

何かのようなもの:

<repositories>
<repository>
<id>jboss-deprecated-repository</id>
<name>JBoss Deprecated Maven Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url>
</repository>
...
<repositories>

また、 https://community.jboss.org/wiki/MavenGettingStarted-Usersを読むことができます

于 2013-02-05T10:51:44.377 に答える