分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 软件开发

maven打包上传到本地中央库

发布时间:2023-09-06 02:19责任编辑:白小东关键词:暂无标签

pom文件中添加插件如下

<build> ???????<plugins> ???????????<plugin> ???????????????<groupId>org.apache.maven.plugins</groupId> ???????????????<artifactId>maven-compiler-plugin</artifactId> ???????????????<configuration> ???????????????????<source>${java.version}</source> ???????????????????<target>${java.version}</target> ???????????????????<testSource>${java.version}</testSource> ???????????????????<testTarget>${java.version}</testTarget> ???????????????</configuration> ???????????</plugin> ???????????<!--配置生成源码包--> ???????????<plugin> ???????????????<groupId>org.apache.maven.plugins</groupId> ???????????????<artifactId>maven-source-plugin</artifactId> ???????????????<version>3.0.1</version> ???????????????<executions> ???????????????????<execution> ???????????????????????<id>attach-sources</id> ???????????????????????<goals> ???????????????????????????<goal>jar</goal> ???????????????????????</goals> ???????????????????</execution> ???????????????</executions> ???????????</plugin> ???????</plugins> ???</build> ???<distributionManagement> ???????<repository> ???????????<id>releases</id> ???????????<name>Nexus Release Repository</name> ???????????<url>http://xxxx:8081/repository/cetccd_hosted/</url> ???????</repository> ???????<snapshotRepository> ???????????<id>snapshots</id> ???????????<name>Nexus Snapshot Repository</name> ???????????<url>http://xxxx:8081/repository/cetccd_snapshots/</url> ???????</snapshotRepository> ???????</distributionManagement> ???

settings.xml文件添加如下内容

<server> ???????<id>snapshots</id> ???????<username>admin</username> ???????<password>xxxx</password> ???</server> ???<server> ??????????<id>releases</id> ??????????<username>admin</username> ??????????<password>xxxx</password> ??????</server> 

clean deploy -Dmaven.test.skip=true

maven打包上传到本地中央库

原文地址:https://www.cnblogs.com/yuluoxingkong/p/9835709.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved