sakai用的maven2 settings.xml



<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">


  <profiles>


    <profile>


      <id>tomcat5x</id> 


      <activation>


        <activeByDefault>true</activeByDefault> 


      </activation>


      <properties>


        <appserver.id>tomcat5x</appserver.id> 


        <appserver.home>/home/sakai/tomcat7</appserver.home> 


        <maven.tomcat.home>/home/sakai/tomcat7</maven.tomcat.home> 


        <sakai.appserver.home>/home/sakai/tomcat7</sakai.appserver.home> 


        <surefire.reportFormat>plain</surefire.reportFormat>


        <surefire.useFile>false</surefire.useFile>


      </properties>


    </profile>


  </profiles>
<mirrors>
<!-- mirror | Specifies a repository mirror site to use instead of a given 
repository. The repository that | this mirror serves has an ID that matches 
the mirrorOf element of this mirror. IDs are used | for inheritance and direct 
lookup purposes, and must be unique across the set of mirrors. | -->
<mirror>
<id>nexus-osc</id>
<mirrorOf>central</mirrorOf>
<name>Nexus osc</name>
<url>http://maven.oschina.net/content/groups/public/</url>
</mirror>
<mirror>
<id>nexus-osc-thirdparty</id>
<mirrorOf>thirdparty</mirrorOf>
<name>Nexus osc thirdparty</name>
<url>http://maven.oschina.net/content/repositories/thirdparty/</url>
</mirror>
</mirrors>

</settings>


fixme


你可能感兴趣的:(sakai用的maven2 settings.xml)