zoukankan      html  css  js  c++  java
  • maven deploy时报错

    Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project admin: Deployment failed: repository element was not specified in the POM inside distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter -> [Help 1]

     
    pom文件没有配置distributionManagement:
    发布仓库一般分为Releases版和snapshot版,所以要配置2个仓库地址 
    <distributionManagement>
            <repository>
                <id>nexus-releases</id>
                <name>corp nexus-releases</name>
                <url>http://你的nexusIP:8081/nexus/content/repositories/releases/</url>
            </repository>
            <snapshotRepository>
                <id>nexus-snapshot</id>
                <name>corp nexus-snapshot</name>
                <url>http://你的nexusIP:8081/nexus/content/repositories/snapshots/</url>
            </snapshotRepository>
        </distributionManagement>
     
    在setting.xml中添加配置:
     
    <servers>
        <!-- 发布Releases版的账号,ID要与distributionManagement中的Releases ID一致 -->
        <server>
          <id>nexus-releases</id>
          <username>admin</username>
          <password>******</password>
        </server>
        <!-- 发布snapshot版的账号,ID要与distributionManagement中的snapshot ID一致 -->
        <server>
          <id>nexus-snapshot</id>
          <username>admin</username>
          <password>******</password>
        </server>
    </servers>
    默认密码是 deployment123,也可以自定义密码,然后去Nexus后台修改对应的密码,在登陆后界面左侧Security下的Users下修改密码。
     
    其实本人已经配置了上面这些内容,但依然报错的原因其实是我的项目是多模块的,我只在一个模块的pom里配置了distributionManagement,但是我却用另一个模块打包,当然会报错。==、
  • 相关阅读:
    maven安装
    删掉centos原有的openjdk并安装sun jdk
    搭建私有仓库Harbor
    什么是Docker
    总结docker常用命令
    MySQL如何修改密码
    VMware vSphere
    安装Esxi 6.5
    Linux安装python3.6
    提高Linux运维效率的30个命令行常用快捷键
  • 原文地址:https://www.cnblogs.com/gqymy/p/9216713.html
Copyright © 2011-2022 走看看