zoukankan      html  css  js  c++  java
  • Maven基础配置—上传jar包到私服

     

    一、配置

    在需要上传的工程中的pom.xml文件中加入下面的配置

    <distributionManagement>
        <repository>
            <id>release</id>
            <name>Release Repository</name>
            <url>http://ip/nexus/content/repositories/releases</url>
        </repository>
        <snapshotRepository>
            <id>snapshot</id>
            <name>Snapshot Repository</name>
            <url>http://ip/nexus/content/repositories/snapshots</url>
        </snapshotRepository>
    </distributionManagement>

    我们可以在settings.xml中配置全局的url地址,pom.xml中进行动态获取。

    settings.xml的default-profile中加入下面全局配置

    <properties>
        <ReleaseRepository>http://ip/nexus/content/repositories/releases</ReleaseRepository>
        <SnapshotRepository>http://ip/nexus/content/repositories/snapshots</SnapshotRepository>
    </properties>

    pom.xml中改为

    <distributionManagement>
        <repository>
            <id>release</id>
            <name>Release Repository</name>
            <url>${ReleaseRepository}</url>
        </repository>
        <snapshotRepository>
            <id>snapshot</id>
            <name>Snapshot Repository</name>
            <url>${SnapshotRepository}</url>
        </snapshotRepository>
    </distributionManagement>

    这样,pom.xml中就可以动态获取settings.xml中的地址

    除此之外,还要在settings.xml中配置鉴权账号,否则上传将报401鉴权错误

    <server>
        <id>deployment</id>
        <username>deployment</username>
        <password>deployment账号的密码</password>
    </server>

     

    二、命令

    mvn deploy:deploy-file -DgroupId=groupId -DartifactId=artifactId -Dversion=version -Dfile=本地jar包路径 -DrepositoryId=releases/snapshots -Durl=仓库地址

    举例:上传jmxri-1.2.1.jar,本地存放在D盘

    mvn deploy:deploy-file -DgroupId=com.sun.jmx –DartifactId=jmxri -Dversion=1.2.1 -Dfile=d:/jmxri-1.2.1.jar -DrepositoryId=releases -Durl=http://ip/nexus/content/repositories/releases

  • 相关阅读:
    SentiAnalysis
    大数据索引技术 B+ tree vs LSM tree
    Regression, 回归问题
    Data Mining with R
    Why Vector Clock are Easy or Hard?
    How to know what an HRESULT code means?
    如何判断数据库表的某个列上有重复值的记录存在?
    关于SharePoint 2010里Servers in farm页面里status意义的澄清
    SharePoint Security系列 之二 CrossSite Request Forgery
    从MOSS2007升级到SharePoint2010后Report Server content types升级失败
  • 原文地址:https://www.cnblogs.com/bigshark/p/5137354.html
Copyright © 2011-2022 走看看