zoukankan      html  css  js  c++  java
  • maven deploy时报错 distributionManagement element or in -DaltDeploymentRepository=id::layout::url parameter

    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,但是我却用另一个模块打包,当然会报错。
     
     
  • 相关阅读:
    05_python_字典
    04_python_列表
    03_python_基本数据类型
    02_python_while循环/格式化输出/逻辑运算
    01_python_初始python
    vue中v-model的数据双向绑定(重要)
    vue中轮播图的实现
    侦听器watch 监听单个属性
    vue computed监听多个属性
    vue中ajax应用
  • 原文地址:https://www.cnblogs.com/xiohao/p/13539050.html
Copyright © 2011-2022 走看看