Maven 自动打包上传到私服 Nexus

配置

    Maven获取jar的默认顺序是
    
    1. Releases 在发布库里面查找(主要用于稳定版)
    2. Snapshots 在快照库里面查找(和上面的区别就是在pom加了个<version>0.0.5-SNAPSHOT</version>,主要用于开发阶段)
    3. 3rd party 不是我们自己开发的,也在中央库找不到的,就要到这里手动上传包到私服。
    4. Central 到中央库查找。


    上传私服 pom.xml 配置

<distributionManagement > <repository > <id >releases </id > <url >http://vrouter.lz-oa.com:8081/nexus/content/repositories/releases/ </url > </repository > <snapshotRepository > <id >Snapshots </id > <url >http://vrouter.lz-oa.com:8081/nexus/content/repositories/snapshots</ url> </snapshotRepository > </distributionManagement >

    settings.xml 配置

<servers> <server> <id>releases</id> <username>admin</username> <password>qsapwd</password> </server> <server> <id>Snapshots</id> <username>admin</username> <password>qsapwd</password> </server> </servers>

    打包源码 pom.xml 配置

<build> <plugins> <plugin> <!-- 打jar包 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <excludes> <exclude>**/*.properties</exclude> </excludes> </configuration> </plugin> <plugin> <!-- 打源码 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <configuration> <attach>true</attach> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build>

Maven 打源码包,并上传私服

    1. 使用命令行

    cmd 进入到项目根目录执行:mvn clean source:jar package 会生成两个jar,其中有一个是源码的jar,分别使用相同的groupId和artifactId。

    也可以直接,打包并上传私服,使用命令:deploy -e

    2. 使用Eclipse

    右击项目 Run as →Maven bulid,在Goals输入deploy -e。

转载于:https://my.oschina.net/u/3707722/blog/1624249

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值