henryyan
12/15/2011 - 10:24 AM

runchain settings.xml

runchain settings.xml

<?xml version="1.0" encoding="UTF-8"?>

<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/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">



	<mirrors>

		<mirror>

			<id>nexus</id>

			<mirrorOf>*</mirrorOf>

			<url>http://runchain.gicp.net:8081/nexus/content/groups/public</url>

		</mirror>

	</mirrors>



	<profiles>

		<profile>

			<id>nexus</id>

            <!--Enable snapshots for the built in central repo to direct -->

            <!--all requests to nexus via the mirror -->

			<repositories>

				<repository>

					<id>central</id>

					<url>http://central</url>

					<releases>

						<enabled>true</enabled>

					</releases>

					<snapshots>

						<enabled>true</enabled>

					</snapshots>

				</repository>

			</repositories>

			<pluginRepositories>

				<pluginRepository>

					<id>central</id>

					<url>http://central</url>

					<releases>

						<enabled>true</enabled>

					</releases>

					<snapshots>

						<enabled>true</enabled>

					</snapshots>

				</pluginRepository>

			</pluginRepositories>

		</profile>

	</profiles>

	<activeProfiles>

        <!--make the profile active all the time -->

		<activeProfile>nexus</activeProfile>

	</activeProfiles>

</settings>