2009-03-04 20:53:32 -05:00
<?xml version="1.0"?>
<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/setrings/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository > /opt/repos/local-repository</localRepository>
<mirrors >
<mirror >
<id > Nexus</id>
<mirrorOf > *</mirrorOf>
<name > Nexus</name>
2009-03-04 23:02:23 -05:00
<url > http://repository.sonatype.org/content/groups/public</url>
2009-03-04 20:53:32 -05:00
</mirror>
</mirrors>
<profiles >
<profile >
<id > development</id>
<properties >
<forgeReleaseUrl > file:/opt/repos/deploy-junk</forgeReleaseUrl>
<forgeSnapshotUrl > file:/opt/repos/deploy-junk</forgeSnapshotUrl>
<mojoDistMgmtSnapshotsUrl > file:/opt/repos/deploy-junk</mojoDistMgmtSnapshotsUrl>
<distMgmtSnapshotsUrl > file:/opt/repos/deploy-junk</distMgmtSnapshotsUrl>
<distMgmtSnapshotsName > Sonatype Maven Snapshots</distMgmtSnapshotsName>
<plexusDistMgmtSnapshotsUrl > file:/opt/repos/deploy-junk</plexusDistMgmtSnapshotsUrl>
<surefire.useFile > false</surefire.useFile>
<flexReleaseUrl > file:/opt/repos/deploy-junk</flexReleaseUrl>
<flexSnapshotUrl > file:/opt/repos/deploy-junk</flexSnapshotUrl>
<nexusPluginsReleaseUrl > file:/opt/repos/deploy-junk</nexusPluginsReleaseUrl>
<nexusPluginsSnapshotUrl > file:/opt/repos/deploy-junk</nexusPluginsSnapshotUrl>
</properties>
<!-- Central is included by default and we must either turn it off, or fix it for our purposes. Lets fix it by turning on snapshots so that internal snaps will be found. Do
this for repo and pluginRepo -->
<repositories >
<repository >
<id > central</id>
<url > http://Nexus</url>
<releases >
<enabled > true</enabled>
</releases>
<snapshots >
<enabled > true</enabled>
<updatePolicy > always</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories >
<pluginRepository >
<id > central</id>
<url > http://Nexus</url>
<releases >
<enabled > true</enabled>
<updatePolicy > always</updatePolicy>
</releases>
<snapshots >
<enabled > true</enabled>
<updatePolicy > always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
<activeProfiles >
<activeProfile > development</activeProfile>
</activeProfiles>
</settings>