zoukankan      html  css  js  c++  java
  • 标准maven配置setting文件

    <?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">
    
        <!-- 本地仓库的位置 -->
        <localRepository>E:/Data/Maven/repository</localRepository>
    
        <!-- Apache Maven 配置 -->
        <pluginGroups/>
        <proxies/>
    
        <!-- 私服发布的用户名密码 -->
        <servers>
            <server>
                <id>releases</id>
                <username>账号</username>
                <password>密码</password>
            </server>
            <server>
                <id>snapshots</id>
                <username>账号</username>
                <password>密码</password>
            </server>
        </servers>
    
        <!-- 阿里云镜像 -->
        <mirrors>
            <mirror>
                <id>alimaven</id>
                <name>aliyun maven</name>
                <!-- https://maven.aliyun.com/repository/public/ -->
                <url>https://maven.aliyun.com/repository/public</url>
                <mirrorOf>central</mirrorOf>
            </mirror>
        </mirrors>
    
        <!-- 配置: java8, 先从阿里云下载, 没有再去私服下载  -->
        <!-- 20190929 hepengju 测试结果: 影响下载顺序的是profiles标签的配置顺序(后面配置的ali仓库先下载), 而不是activeProfiles的顺序 -->
        <profiles>
            <!-- 全局JDK1.8配置 -->
            <profile>
                <id>jdk1.8</id>
                <activation>
                    <activeByDefault>true</activeByDefault>
                    <jdk>1.8</jdk>
                </activation>
                <properties>
                    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                    <maven.compiler.source>1.8</maven.compiler.source>
                    <maven.compiler.target>1.8</maven.compiler.target>
                    <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
                </properties>
            </profile>
    
    
            <!-- Nexus私服配置: 第三方jar包下载, 比如oracle的jdbc驱动等 -->
            <profile>
                <id>dev</id>
                <repositories>
                    <repository>
                        <id>nexus</id>
                        <url>http://nexus.xxxx.cn:8081/repository/maven-public/</url>
                        <releases>
                            <enabled>true</enabled>
                        </releases>
                        <snapshots>
                            <enabled>true</enabled>
                        </snapshots>
                    </repository>
                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <id>maven-public</id>
                        <name>Public Repositories</name>
                        <url>http://nexus.xxxx.cn:8081/repository/maven-public/</url>
                    </pluginRepository>
                </pluginRepositories>
            </profile>
    
            <!-- 阿里云配置: 提高国内的jar包下载速度 -->
            <profile>
                <id>ali</id>
                <repositories>
                    <repository>
                        <id>alimaven</id>
                        <name>aliyun maven</name>
                        <url>https://maven.aliyun.com/repository/public</url>
                        <releases>
                            <enabled>true</enabled>
                        </releases>
                        <snapshots>
                            <enabled>true</enabled>
                        </snapshots>
                    </repository>
                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <id>alimaven</id>
                        <name>aliyun maven</name>
                        <url>https://maven.aliyun.com/repository/public</url>
                    </pluginRepository>
                </pluginRepositories>
            </profile>
    
        </profiles>
    
        <!-- 激活配置 -->
        <activeProfiles>
            <activeProfile>jdk1.8</activeProfile>
            <activeProfile>dev</activeProfile>
            <activeProfile>ali</activeProfile>
        </activeProfiles>
    </settings>
  • 相关阅读:
    学生管理系统
    python集合(方法)
    python字典(包括方法)
    python元组(包括方法)
    python列表(包含列表方法)
    python索引
    python三元运算
    python while循环
    python-if语句
    python数据类型和运算符
  • 原文地址:https://www.cnblogs.com/i-tao/p/14071995.html
Copyright © 2011-2022 走看看