概述
执行 deploy ,结果没报错,但是 INfo 信息 提示,跳过 了 发布 Skipping artifact deployment
[INFO] --- maven-install-plugin:2.5.2:install (default-install) @ gov-whole-report ---
[INFO] Skipping artifact installation
[INFO]
[INFO] --- maven-deploy-plugin:2.8.2:deploy (default-deploy) @ gov-whole-report ---
[INFO] Skipping artifact deployment
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
项目中没有跳过,于是排查 搜索到 依赖的其他jar 里 的 pom 有配置 跳过:
<plugins>
<!-- 加入maven deploy插件,当在deploy时,忽略些model-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip> 跳过
</configuration>
</plugin>
</plugins>
所以在 自己的pom里加 <skip>false</skip>, 执行deploy 时 不跳过,就 deploy 成功了。
nexus 仓库 就有了。
最后
以上就是靓丽糖豆为你收集整理的idea maven deploy Skipping artifact deployment的全部内容,希望文章能够帮你解决idea maven deploy Skipping artifact deployment所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复