我是靠谱客的博主 暴躁发卡,最近开发中收集的这篇文章主要介绍Maven-repository element was not specified in the POM inside distributionManagement element错误原因解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

错误

项目模块deploy失败,报错如下:

[INFO] Scanning for projects...
[INFO] 
[INFO] -----------------< com.xxxx:archetype-common-bom >-----------------
[INFO] Building archetype-common-bom 1.0.0
[INFO] --------------------------------[ pom ]---------------------------------
[INFO] 
[INFO] --- maven-install-plugin:2.4:install (default-install) @ archetype-common-bom ---
[INFO] Installing /Users/eistert/archetype/cloud-archetype/archetype-common/archetype-common-bom/pom.xml to /Users/eistert/.m2/repository/com/xxxxgroup/archetype-common-bom/1.0.0/archetype-common-bom-1.0.0.pom
[INFO] 
[INFO] --- maven-deploy-plugin:2.7:deploy (default-deploy) @ archetype-common-bom ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  0.490 s
[INFO] Finished at: 2021-12-21T18:35:57+08:00
[INFO] ------------------------------------------------------------------------
[WARNING] The requested profile "nexus-profile" could not be activated because it does not exist.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project archetype-common-bom: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [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/MojoExecutionException

原因

pom文件中没有nexus远程仓库地址。

解决方法

在distributionManagement标签中加上nexus远程仓库地址。

    <distributionManagement>
        <repository>
            <id>nexus-releases</id>
            <name>Internal Releases</name>
            <url>http://ip:port/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
            <id>nexus-snapshots</id>
            <name>Internal Snapshots</name>
            <url>http://ip:port/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>

depoly成功

在这里插入图片描述

最后

以上就是暴躁发卡为你收集整理的Maven-repository element was not specified in the POM inside distributionManagement element错误原因解决方法的全部内容,希望文章能够帮你解决Maven-repository element was not specified in the POM inside distributionManagement element错误原因解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部