idea maven deploy Skipping artifact deployment

执行 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 有配置 跳过:


   
   
        org.apache.maven.plugins
        maven-deploy-plugin
        2.8.2
       
            true 跳过
       

   

所以在 自己的pom里加 false, 执行deploy 时  不跳过,就 deploy 成功了。

nexus 仓库 就有了。

你可能感兴趣的:(idea,java,Skipping,artifact,deployment,java,maven)