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>
    
    -->
  • 相关阅读:
    windows下查看端口进程占用情况
    分布式文件管理系统MooseFS在centOS 7中的安装
    开发中的技术选型调研总结
    windows和linux无法访问VMware中linux的tomcat主页问题
    如何使windows系统ping通VMware下面的linux系统
    VMware中linux安装jdk
    mysql数据库之存储过程入门
    Hibernate批处理操作优化 (批量插入、更新与删除)
    JDBC: 批量处理提高SQL处理速度
    小程序 长按复制文本
  • 原文地址:https://www.cnblogs.com/seniortestingdev/p/4675304.html
Copyright © 2011-2022 走看看