首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

maven最容易的settings.xml

2012-07-16 
maven最简单的settings.xml?xml version1.0 encodingUTF-8?settings xmlnshttp://maven.apache

maven最简单的settings.xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
  <mirrors>
    <mirror>
      <id>ibiblio.org</id>
      <mirrorOf>central</mirrorOf>
      <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>
    </mirror>
  </mirrors>
 
  <profiles>
     <profile>
    </profile>
  </profiles>
 
  <activeProfiles>
<activeProfile>default</activeProfile>
  </activeProfiles>
  <servers> 
  </servers>
</settings>

 

热点排行