<?xml version="1.0"?>
<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">
	<servers>
		<server>
			<id>tomcat</id>
			<username>andrea</username>
			<password>pwd</password>
		</server>
		<server>
			<id>radiohead</id>
			<username>root</username>
			<privateKey>/Users/andreaceccanti/.ssh/id_rsa</privateKey>
		</server>
	</servers>
	<mirrors>
        <!--
		<mirror>
            <id>cern-maven-mirror</id>
            <name>CERN maven mirror</name>
            <url>http://itgt-maven.cern.ch:8081/nexus/content/groups/public</url>
            <mirrorOf>*</mirrorOf>
        </mirror>
        -->
		<mirror>
			<id>radiohead</id>
			<name>My test mirror</name>
			<url>http://radiohead.cnaf.infn.it:8081/nexus/content/groups/public</url>
			<mirrorOf>*,!unicore-snapshots,!cnaf-snapshots,!cnaf-releases</mirrorOf>
		</mirror>
	</mirrors>
    <profiles>
    <profile>
      <id>nexus</id>
      <repositories>
        <repository>
          <id>unicore-snapshots</id>
          <url>http://radiohead.cnaf.infn.it:8081/nexus/content/repositories/unicore-snapshots</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
    </profile>
    </profiles>
    <activeProfiles>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>
