1

在jenkins中构建maven应用程序时出现以下错误

    [ERROR] Artifact: com.envoisolutions.sxc:sxc-runtime:jar:0.7.3-osgi has no file.
org.apache.maven.artifact.resolver.ArtifactNotFoundException: Could not find artifact com.envoisolutions.sxc:sxc-runtime:jar:0.7.3-osgi in central (http://repo.maven.apache.org/maven2)

org.apache.maven.artifact.resolver.ArtifactNotFoundException: Could not find artifact xpp3:xpp3_min:jar:1.1.3.4.O-osgi in central (http://repo.maven.apache.org/maven2)

Try downloading the file manually from the project website.

Then, install it using the command: 
    mvn install:install-file -DgroupId=xpp3 -DartifactId=xpp3_min -Dversion=1.1.3.4.O-osgi -Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there: 
    mvn deploy:deploy-file -DgroupId=xpp3 -DartifactId=xpp3_min -Dversion=1.1.3.4.O-osgi -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  xpp3:xpp3_min:jar:1.1.3.4.O-osgi

from the specified remote repositories:
  central (http://repo.maven.apache.org/maven2, releases=true, snapshots=false),
  codehaus-releases (http://repository.codehaus.org/, releases=true, snapshots=true),
  java.net (http://download.java.net/maven/2/, releases=true, snapshots=true),
  central (http://repo.maven.apache.org/maven2, releases=true, snapshots=false)

有什么方法可以将 maven 的搜索限制在少数 repos 范围内?

4

1 回答 1

0

这件神器似乎很古老。我在这个 Maven 存储库中找到了它:

https://teamcity-systeme.lip6.fr/nexus/content/groups/public

将此 repo 添加到 Maven 的 pom.xml 中。

于 2013-05-06T15:27:39.447 回答