maven上传jar包以及SNAPSHOT的一个坑
文章发布较早,内容可能过时,阅读注意甄别。
# 1,手动上传包。
之前有不少人问过 nexus 私服搭建好了之后,我该如何将一些新的外部包上传到私服当中呢,其实是非常简单的。
首先是要登录上去,然后点击 Upload
,找到 maven-local
将 jar 包找到选中,然后填写对应的三个定位信息即可上传。
在引用的时候,道理是一样的,将刚刚定义的三个定位信息写入到项目的 pom 文件当中,即可引用。
# 2,引用 SNAPSHOT 的一个坑。
前天一个开发者过来找到我,说自己通过命令行往私服上传了一个SNAPSHOT
(关于快照包的概念请自行百度,这里不赘述了)包,接着就在 pom 当中引用这个包,发现总是报错,报错内容大概如下:
[ERROR] Failed to execute goal on project ishangjie-admin-service: Could not resolve dependencies for project com.ald.ishangjie:ishangjie-admin-service:jar:1.0.0: Could not find artifact com.ald.ishangjie:ishangjie-activity-service-client:jar:0.0.1-SNAPSHOT -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
1
2
3
4
5
6
7
2
3
4
5
6
7
大概意思就是无法引用到。
后来在其他地方找到了答案:
提示
Maven 内置的插件远程仓库配置,关闭了对 SNAPSHOT 的支持,防止不稳定的构建 :::
所以解决办法最关键的是:在 maven 的 conf 目录下的 setting.xml 文件中,添加对 SNAPSHOT 的支持,将 false
改为 true
即可。
<snapshots>
<enabled>true</enabled>
</snapshots>
1
2
3
2
3
现在再去进行构建,就不会报刚刚的错误了。
参考地址:http://t.cn/AiCnBtIR
上次更新: 2024/11/19, 23:11:42