mirror of https://github.com/apache/maven.git
66 lines
2.5 KiB
XML
66 lines
2.5 KiB
XML
<?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>
|
|
<url>http://repository.sonatype.org/content/groups/public</url>
|
|
</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>
|