Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on p

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


发布本地项目到远程nexus私服抛了异常,这个提示意思是本项目不知道发不到哪个仓库,需要指明,项目是发布到哪个仓库id的


修改maven的settings.xml你要发布到哪个仓库,需要这个仓库的权限,snapshot,这个是吧快照的war或者jar上传到snapshot仓库,releases把稳定版本的war或jar上传到releases仓库



    <modelVersion>4.0.0</modelVersion>
    <groupId>com.zxsd</groupId>
    <artifactId>zxsd-app</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>pom</packaging>
        <!-- 配置远程发布到私服,mvn deploy -->
    <distributionManagement>
        <repository>  
            <id>releases</id>  
            <name>Nexus Release Repository</name>  
            <url>http://192.168.1.122:8081/nexus/content/repositories/releases/</url>  
        </repository>  
        <snapshotRepository>  
            <id>snapshots</id>  
            <name>Nexus Snapshot Repository</name>  
            <url>http://192.168.1.122:8081/nexus/content/repositories/snapshots/</url>  
        </snapshotRepository>
    </distributionManagement>


这个是你要上传项目的pom配置,version后缀为SNAPSHOT是需要上传到snapshots库的

            <id>snapshots</id>  
            <name>Nexus Snapshot Repository</name>  
            <url>http://192.168.1.122:8081/nexus/content/repositories/snapshots/</url> 
这段就是控制上传到私有库的代码




eclipse上传 该项目 上传成功


评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值