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> 
  • 相关阅读:
    JSP第三章
    JSP第二章
    JSP第一章
    异常
    七种设计原则
    非泛型集合
    .NET第一章
    航班预定系统
    JSP数据交互(二)
    JSP数据交互(一)
  • 原文地址:https://www.cnblogs.com/imperfectLiu/p/7261585.html
Copyright © 2011-2022 走看看