zoukankan      html  css  js  c++  java
  • Maven添加第三方库及部署配置

    配置其实很简单,还是修改~/.m2/settings.xml文件,具体用文件说话,其他不解释。

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
    
        <!-- 添加第三方库,如果有多个第三方库,多写几个repository就行了 -->
        <profiles>
            <profile>
                <id>dev</id>
                <repositories>
                    <repository>
                        <id>maven-net-cn</id>
                        <name>Cloudvast Maven Repositories</name>
                        <url>http://192.168.10.144:8081/nexus/content/groups/public/</url>
                        <releases>
                            <enabled>true</enabled>
                        </releases>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                    </repository>
                </repositories>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>dev</activeProfile>
        </activeProfiles>
    
    
        <!-- 本地部署的配置 -->
        <servers>
            <server>
                <id>nexus-thirdparty</id>
                <username>admin</username>
                <password>admin123</password>
            </server>
        </servers>
        <distributionManagement>
            <repository>
                <id>nexus-thirdparty</id>
                <name>Nexus ThirdParty Repository</name>
                <url>http://192.168.10.144:8081/nexus/content/repositories/thirdparty</url>
            </repository>
        </distributionManagement>
    
    </settings>
    

      

  • 相关阅读:
    QTP 参数化
    功能自动化测试流程
    Oracle客户端安装及配置
    描述性编程与对象库编程的对比
    Java用Scanner类获取用户输入
    Java入门的程序汇总
    Java入门学习知识点汇总
    Java最常用的变量定义汇总
    eclipse对Java程序的移植
    JavaScript关闭窗口的同时打开新页面的方法
  • 原文地址:https://www.cnblogs.com/xiaosilent/p/3623732.html
Copyright © 2011-2022 走看看