zoukankan      html  css  js  c++  java
  • Maven setting.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">  
       <localRepository>/Users/user/mavenrepository</localRepository>
      
        <profiles>
            <profile> 
            <id>nexus</id>
              <repositories>
                <repository>
                  <id>central</id>
                  <url> http://repo1.maven.org/maven2</url>  
                  <releases><enabled>true</enabled></releases>
                  <snapshots><enabled>true</enabled></snapshots>
                </repository>
              </repositories>
             <pluginRepositories>
                <pluginRepository>
                  <id>central</id>
                  <url> http://repo1.maven.org/maven2</url>  
                  <releases><enabled>true</enabled></releases>
                  <snapshots><enabled>true</enabled></snapshots>
                </pluginRepository>
              </pluginRepositories>
           </profile> 
      </profiles>
        <!-- -->  
        <activeProfiles>  
            <activeProfile>nexus</activeProfile>  
        </activeProfiles>  
    </settings> 
  • 相关阅读:
    阅读笔记09
    阅读笔记08
    阅读笔记07
    阅读笔记06
    阅读笔记05
    有关eclipse连接SQL Server 2008的问题
    每周进度条05
    软件需求模式阅读笔记04
    每周进度条04
    软件需求模式阅读笔记03
  • 原文地址:https://www.cnblogs.com/imperfectLiu/p/7261585.html
Copyright © 2011-2022 走看看