zoukankan      html  css  js  c++  java
  • Maven full settings.xml

    <?xml version="1.0" encoding="UTF-8"?>
    
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!--
     | This is the configuration file for Maven. It can be specified at two levels:
     |
     |  1. User Level. This settings.xml file provides configuration for a single user, 
     |                 and is normally provided in ${user.home}/.m2/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -s /path/to/user/settings.xml
     |
     |  2. Global Level. This settings.xml file provides configuration for all Maven
     |                 users on a machine (assuming they're all using the same Maven
     |                 installation). It's normally provided in 
     |                 ${maven.home}/conf/settings.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -gs /path/to/global/settings.xml
     |
     | The sections in this sample file are intended to give you a running start at
     | getting the most out of your Maven installation. Where appropriate, the default
     | values (values used when the setting is not specified) are provided.
     |
     |-->
    <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
       | The path to the local repository maven will use to store artifacts.
       |
       | Default: ${user.home}/.m2/repository
      <localRepository>/path/to/local/repo</localRepository>
      -->
     <localRepository>C:Usersahu.m2
    epository</localRepository>
     
      <pluginGroups>
          <pluginGroup>org.mortbay.jetty</pluginGroup>
          <pluginGroup>org.codehaus.cargo</pluginGroup>
      </pluginGroups>
    
      <proxies>
      </proxies>
    
      <servers>
          <server>
              <id>releases</id>
              <username>deployment</username>
              <password>deployment123</password>
          </server>
          <server>
              <id>snapshots</id>
              <username>deployment</username>
              <password>deployment123</password>
          </server>  
      </servers>
    
      
    
      <profiles>
        <profile>
          <id>nexus</id>
          <repositories>
          <repository>
              <id>central</id>
              <name>central</name>
              <url>http://servername/nexus/content/groups/public/</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </repository>
            
            <repository>
              <id>soapui</id>
              <name>soapui</name>
              <url>http://www.soapui.org/repository/maven2</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </repository>
            
            <repository>
                <id>jfrog-plugins</id>
                <name>jfrog-plugins-dist</name>
                <url>http://repo.jfrog.org/artifactory/plugins-releases</url>
           </repository>
           <repository>
                <id>repo.jenkins-ci.org</id>
                <name>jenkins-plugins-dist</name>
                <url>http://repo.jenkins-ci.org/public/</url>            
           </repository>
            
          </repositories>
         <pluginRepositories>
            <pluginRepository>
              <id>central</id>
              <url>http://servername/nexus/content/groups/public/</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </pluginRepository>
            <pluginRepository>
              <id>soapui</id>
              <name>soapui</name>
              <url>http://www.soapui.org/repository/maven2</url>
              <releases><enabled>true</enabled></releases>
              <snapshots><enabled>true</enabled></snapshots>
            </pluginRepository>
            <pluginRepository>
                <id>repo.jenkins-ci.org</id>
                <url>http://repo.jenkins-ci.org/public/</url>
                <releases><enabled>true</enabled></releases>
                <snapshots><enabled>true</enabled></snapshots>
            </pluginRepository>
          </pluginRepositories>
        </profile>
       </profiles>
       
        <mirrors>
        
        <mirror>
          <id>central</id>
          <mirrorOf>*,!soapui,!jfrog-plugins,!repo.jenkins-ci.org</mirrorOf>
          <url>http://servername/nexus/content/groups/public/</url>
        </mirror>
        <!--
        <mirror>
          <id>soapui</id>
          <url>http://www.soapui.org/repository/maven2</url>
          <mirrorOf>*</mirrorOf>
        </mirror> -->
        
        
      </mirrors>
    <!-- Give access to Jenkins plugins --> 
      <activeProfiles>
        <activeProfile>nexus</activeProfile>
      </activeProfiles>
      
      
    </settings>
    
    </settings>
    
    <!-- id should be the same as above server id-->
    <!--
    <distributionManagement> 
    
    <repository> 
        <id>releases</id>  
        <name>Internal Releases</name> 
        <url>http://servername/nexus/content/groups/public/</url> 
    </repository> 
    <snapshotRepository> 
        <id>snapshots</id> 
        <name>Internal Snapshots</name> 
        <url>http://servername/nexus/content/groups/public/
    </distributionManagement>
    
    -->
  • 相关阅读:
    exynos4412—CMU裸板复习
    有道云笔记markdown插入图片
    win10自带输入法提交所有中文输入的问题
    【wp】i春秋百度杯CTF比赛2016年12月场writeup
    【wp】百度杯2017年春秋欢乐赛
    【python】为markdown自动生成目录
    【C】MSP432P401R手动实现呼吸灯斗艳
    【python】django实现扫码签到
    【python】观影时定时自动截图
    程序片段
  • 原文地址:https://www.cnblogs.com/alterhu/p/4675304.html
Copyright © 2011-2022 走看看