我有一个Nexus实例,其中Maven 2存储库托管在非Internet连接的企业开发域上。我需要使用Sun的 maven-jaxb-schemagen 插件,但它只能以Maven 1格式提供(以及许多其他Maven 1依赖项,所以这不是一次性的边缘情况)。
我在Nexus中创建了一个新的Maven 1托管存储库( maven1 ),然后创建了一个Maven1到Maven2虚拟存储库( maven1as2 )。由于某些所需的工件是快照,因此 maven1 (以及扩展名 maven1as2 )的策略为快照。
我通过文件系统将所有Maven 1工件导入到此存储库的重写本地存储位置。
然后我将 maven1as2 添加到我的公共存储库组。我发现的一些参考文献表明,Nexus不允许您浏览或搜索Maven1存储库。我的结果好坏参半。如果我在Nexus中选择公共存储库或 maven1as2 ,我可以转到浏览存储空间并向下钻取到 com / sun / tools / jxc / maven2 / maven-jaxb-schemagen-plugin / 1.3-SNAPSHOT / 并查看 maven-jaxb-schemagen-plugin-1.3-SNAPSHOT.pom 文件及其校验和。但是,我无法查看应该存在且位于文件系统上的 JAR 工件。
当我尝试使用Maven构建时,我得到以下内容:
$ mvn clean compile
[INFO] Scanning for projects...
[INFO] Reactor build order:
[INFO] MyProject
[INFO] MyModule1
[INFO] MyModule2
...
[INFO] ---------------------------------------------------------------------------
[INFO] Building MyProject
[INFO] task-segment: [clean, compile]
[INFO] ---------------------------------------------------------------------------
[INFO] [clean:clean {execution: default-clean}]
[INFO] [cobertura:clean {execution: default}]
[INFO] No goals needed for project - skipping
[INFO] ---------------------------------------------------------------------------
[INFO] Building MyModule1
[INFO] task-segment: [clean, compile]
[INFO] ---------------------------------------------------------------------------
Downloading: http://my.nexus.server:8081/nexus/content/groups/public/com/sun/tools/jxc/maven2/maven-jaxb-schemagen-plugin/1.3-SNAPSHOT/maven-jaxb-schemagen-plugin-1.3-SNAPSHOT.pom
6K downloaded (maven-jaxb-schemagen-plugin-1.3-SNAPSHOT.pom)
[INFO] ---------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ---------------------------------------------------------------------------
[INFO] A required plugin was not found: Plugin could not be found - check that the goal name is correct: Unable to download the artifact from any repository
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=com.sun.tools.jxc.maven2 -DartifactId=maven-jaxb-schemagen-plugin -Dversion=1.3-SNAPSHOT -Dpackaging=maven-plugin -Dfile=path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=com.sun.tools.jxc.maven2 -DartifactId=maven-jaxb-schemagen-plugin -Dversion=1.3-SNAPSHOT -Dpackaging=maven-plugin -Dfile=path/to/file -Durl=[url] -DrepositoryId=[id]
com.sun.tools.jxc.maven2:maven-jaxb-schemagen-plugin:1.3-SNAPSHOT
from the specified remote repositories:
nexus (http://my.nexus.server:8081/nexus/content/groups/public)
com.sun.tools.jxc.maven2:maven-jaxb-schemagen-plugin:1.3-SNAPSHOT
from the specified remote repositories:
nexus (http://my.nexus.server:8081/nexus/content/groups/public)
[INFO] ---------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ---------------------------------------------------------------------------
[INFO] Total time: 2 seconds
[INFO] Finished at: Tue Jul 06 15:05:08 EDT 2010
[INFO] Final Memory: 7M/17M
[INFO] ---------------------------------------------------------------------------
答案 0 :(得分:0)
有时候在使用m2eclipse时会发生这种情况。您选择了一个依赖项,默认范围是pom而不是jar。你没有显示你的pom文件。验证所有依赖项都是jar范围。
答案 1 :(得分:0)
我了解到,大多数情况下重建存储库的元数据有助于解决此类问题。 我觉得这很有必要。
对于某些情况,过期缓存和重新索引也可能有所帮助 大多数情况下,这些步骤在第一次尝试时没有解决问题,但最后他们每次都解决了这个问题。
我在Glassfish 2.1中运行Nexus作为WAR