我正在尝试从我的 Nexus 存储库中提取最新的工件。我正在使用get命令来拉取工件。
mvn dependency:get -Durl=http://nexus-repository:8080/nexus/content/repositories/snapshots -Dartifact=com.my.company:common:LATEST-Dtransitive=false -Ddest=. -s settings.xml
这是我收到的错误消息。
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:get (default-cli) on project standalone-pom: Couldn't download artifact: Failed to resolve version for com.my.company:common:jar:LATEST: Could not find metadata com.my.company:common/maven-metadata.xml in releases (http://nexus-repository:8080/nexus/content/repositories/releases)
我也不知道为什么它在发布而不是在快照中,因为该版本在我的快照存储库中。
当我使用特定版本运行时,一切正常:
mvn dependency:get -Durl=http://nexus-repository:8080/nexus/content/repositories/snapshots -Dartifact=com.my.company:common:1.0.0-SNAPSHOT -Dtransitive=false -Ddest=. -s settings.xml
我想使用 mvn 命令提取最新版本,而不是 curl 和 wget。
有什么建议或想法吗?