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,但是我却用另一个模块打包,当然会报错。==、
  • 相关阅读:
    微擎开发笔记
    Array对象的方法实现(1)----Array.prototype.push和Array.prototype.concat(实现常规参数的功能)
    ThinkCMF 5 基础门户CMS框架的模板widget标签实现
    [转]mysql为什么默认有那么多root用户,还有用户名为空的用户?
    PHP 5.4特性 trait
    道破人性
    c#使用easyhook库进行API钩取
    黑马eesy_15 Vue:04.综合案例(前端Vue实现)
    黑马eesy_15 Vue:04.Vue案例(ssm环境搭建)
    黑马eesy_15 Vue:03.生命周期与ajax异步请求
  • 原文地址:https://www.cnblogs.com/gqymy/p/9216713.html
Copyright © 2011-2022 走看看