You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by og...@apache.org on 2009/04/23 00:57:04 UTC

svn commit: r767705 [29/31] - in /maven/mercury/trunk/mercury-core: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/maven/ src/main/java/org/apache/maven/mercury/ src/main/java/org/apache/maven/mer...

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.025019-28.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081106.231623-29.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.020526-30.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.023848-31.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom.sha1
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom.sha1?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom.sha1 (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081108.025051-32.pom.sha1 Wed Apr 22 22:56:48 2009
@@ -0,0 +1 @@
+c3bec1d1617f434dfc90040beae432f2a7a396d8
\ No newline at end of file

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-20081110.035029-33.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT-tests.jar
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT-tests.jar?rev=767705&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom Wed Apr 22 22:56:48 2009
@@ -0,0 +1,291 @@
+<project 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/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.maven.mercury</groupId>
+    <artifactId>mercury</artifactId>
+    <version>1.0.0-alpha-2-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury parent POM:             ${project.version}</name>
+  
+  <issueManagement>
+  	<system>jira</system>
+  	<url>http://jira.codehaus.org/browse/MERCURY</url>
+  </issueManagement>
+  
+  <developers>
+    <developer>
+      <name>Jan Bartel</name>
+    </developer>
+    <developer>
+      <name>Jesse McConnell</name>
+    </developer>
+    <developer>
+      <name>Oleg Gusakov</name>
+    </developer>
+    <developer>
+      <name>Jason van Zyl</name>
+    </developer>
+    <developer>
+      <name>Greg Wilkins</name>
+    </developer>
+  </developers>
+  
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-crypto-basic</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-transport-http</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-md-sat</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-local-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.mercury</groupId>
+      <artifactId>mercury-repo-remote-m2</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+ 
+<profiles>
+  <profile>
+  	<id>mercury.install.all</id>
+    <activation>
+      <property>
+        <name>mercury.install.all</name>
+        <value>true</value>
+      </property>
+    </activation>
+    <build>
+
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-enforcer-plugin</artifactId>
+				<version>1.0-alpha-3</version>
+				<executions>
+					<execution>
+						<goals>
+							<goal>enforce</goal>
+						</goals>
+						<configuration>
+							<rules>
+								<requireMavenVersion>
+									<version>[2.0.9,)</version>
+								</requireMavenVersion>
+								<requireJavaVersion>
+									<version>1.5.0</version>
+								</requireJavaVersion>
+							</rules>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<version>2.0</version>
+				<executions>
+					<execution>
+						<id>clean</id>
+						<goals>
+							<goal>clean</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.2</version>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-source-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-sources</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+	  </profile>
+</profiles>  
+
+<build>
+    <resources>
+      <resource>
+        <directory>src/main/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+        <filtering>false</filtering>
+      </resource>
+    </resources>
+
+    <testResources>
+      <testResource>
+        <directory>src/test/java</directory>
+        <filtering>false</filtering>
+        <includes>
+            <include>**/Messages.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>src/test/resources</directory>
+        <filtering>false</filtering>
+      </testResource>
+    </testResources>
+
+<plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+          	<id>package-tests</id>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>      
+      
+      <!--
+      <plugin>
+        <groupId>com.google.code.maven-license-plugin</groupId>
+        <artifactId>maven-license-plugin</artifactId>
+        <configuration>
+          <basedir>${basedir}</basedir>
+          <header>${basedir}/header.txt</header>
+          <quiet>false</quiet>
+          <includes>
+            <include>src/**</include>
+          </includes>
+          <useDefaultExcludes>true</useDefaultExcludes>
+          <useDefaultMapping>true</useDefaultMapping>
+        </configuration>
+      </plugin>
+      -->
+    </plugins>
+ 
+  </build>
+  
+  <dependencies>
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-43</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>1.5.1</version>
+    </dependency>
+
+    <!-- Test Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>    
+
+    <dependency>
+    	<groupId>org.codehaus.plexus</groupId>
+    	<artifactId>plexus-lang</artifactId>
+    	<version>1.0</version>
+    </dependency>
+  </dependencies>
+
+</project>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/mercury-pom-1.0.0-alpha-2-SNAPSHOT.pom
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties Wed Apr 22 22:56:48 2009
@@ -0,0 +1,28 @@
+#
+#  Licensed to the Apache Software Foundation (ASF) under one
+#  or more contributor license agreements.  See the NOTICE file
+#  distributed with this work for additional information
+#  regarding copyright ownership.  The ASF licenses this file
+#  to you under the Apache License, Version 2.0 (the
+#  "License"); you may not use this file except in compliance
+#  with the License.  You may obtain a copy of the License at
+# 
+#   http://www.apache.org/licenses/LICENSE-2.0
+# 
+#  Unless required by applicable law or agreed to in writing,
+#  software distributed under the License is distributed on an
+#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+#  specific language governing permissions and limitations
+#  under the License.
+#
+#Last modified on: Sat Nov 08 21:16:45 PST 2008
+#Sat Nov 08 21:16:45 PST 2008
+ch.rel.maven-metadata-ch.rel.xml.lastUpdated=1226207805792
+apache.snapshots.maven-metadata-apache.snapshots.xml.lastUpdated=1226207805289
+sona.staging.maven-metadata-sona.staging.xml.lastUpdated=1225932061627
+ch.sn.maven-metadata-ch.sn.xml.lastUpdated=1226207805632
+codehaus.snapshots.maven-metadata-codehaus.snapshots.xml.lastUpdated=1226207805955
+sonatype-forge.maven-metadata-sonatype-forge.xml.lastUpdated=1225764961711
+sona.central.maven-metadata-sona.central.xml.lastUpdated=1226207805469
+maven.central.maven-metadata-maven.central.xml.lastUpdated=1225756825054

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/1.0.0-alpha-2-SNAPSHOT/resolver-status.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml Wed Apr 22 22:56:48 2009
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+     Licensed to the Apache Software Foundation (ASF) under one
+     or more contributor license agreements.  See the NOTICE file
+     distributed with this work for additional information
+     regarding copyright ownership.  The ASF licenses this file
+     to you under the Apache License, Version 2.0 (the
+     "License"); you may not use this file except in compliance
+     with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+     Unless required by applicable law or agreed to in writing,
+     software distributed under the License is distributed on an
+     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+     KIND, either express or implied.  See the License for the
+     specific language governing permissions and limitations
+     under the License.
+
+-->
+<metadata>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <version>1-alpha-1-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1-alpha-1-SNAPSHOT</version>
+      <version>1-alpha-2-SNAPSHOT</version>
+      <version>1.0.0-alpha-2-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20081110035045</lastUpdated>
+  </versioning>
+</metadata>

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml.sha1
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml.sha1?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml.sha1 (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.snapshots.xml.sha1 Wed Apr 22 22:56:48 2009
@@ -0,0 +1 @@
+27862e38d9429cc5af8a66f298d95419431b5c06
\ No newline at end of file

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml Wed Apr 22 22:56:48 2009
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+     Licensed to the Apache Software Foundation (ASF) under one
+     or more contributor license agreements.  See the NOTICE file
+     distributed with this work for additional information
+     regarding copyright ownership.  The ASF licenses this file
+     to you under the Apache License, Version 2.0 (the
+     "License"); you may not use this file except in compliance
+     with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+     Unless required by applicable law or agreed to in writing,
+     software distributed under the License is distributed on an
+     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+     KIND, either express or implied.  See the License for the
+     specific language governing permissions and limitations
+     under the License.
+
+-->
+<metadata>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <version>1-alpha-1</version>
+  <versioning>
+    <versions>
+      <version>1-alpha-1</version>
+    </versions>
+    <lastUpdated>20081004001352</lastUpdated>
+  </versioning>
+</metadata>

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-apache.staging.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml Wed Apr 22 22:56:48 2009
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+     Licensed to the Apache Software Foundation (ASF) under one
+     or more contributor license agreements.  See the NOTICE file
+     distributed with this work for additional information
+     regarding copyright ownership.  The ASF licenses this file
+     to you under the Apache License, Version 2.0 (the
+     "License"); you may not use this file except in compliance
+     with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+     Unless required by applicable law or agreed to in writing,
+     software distributed under the License is distributed on an
+     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+     KIND, either express or implied.  See the License for the
+     specific language governing permissions and limitations
+     under the License.
+
+-->
+<metadata>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <version>1-alpha-1-SNAPSHOT</version>
+  <versioning>
+    <versions>
+      <version>1-alpha-1-SNAPSHOT</version>
+      <version>1-alpha-1</version>
+      <version>1-alpha-2-SNAPSHOT</version>
+      <version>1.0.0-alpha-2-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20081110035045</lastUpdated>
+  </versioning>
+</metadata>

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-local.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml Wed Apr 22 22:56:48 2009
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+<!--
+
+     Licensed to the Apache Software Foundation (ASF) under one
+     or more contributor license agreements.  See the NOTICE file
+     distributed with this work for additional information
+     regarding copyright ownership.  The ASF licenses this file
+     to you under the Apache License, Version 2.0 (the
+     "License"); you may not use this file except in compliance
+     with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+     Unless required by applicable law or agreed to in writing,
+     software distributed under the License is distributed on an
+     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+     KIND, either express or implied.  See the License for the
+     specific language governing permissions and limitations
+     under the License.
+
+-->
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <versioning>
+    <versions>
+      <version>1-SNAPSHOT</version>
+      <version>1-alpha-1-SNAPSHOT</version>
+    </versions>
+    <lastUpdated>20080930001014</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml.sha1
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml.sha1?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml.sha1 (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-sona-maven-snapshots.xml.sha1 Wed Apr 22 22:56:48 2009
@@ -0,0 +1 @@
+e0e537175ffe5b7165a8fd7c41b89d3c295f7050
\ No newline at end of file

Added: maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-staged.releases.xml
URL: http://svn.apache.org/viewvc/maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-staged.releases.xml?rev=767705&view=auto
==============================================================================
--- maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-staged.releases.xml (added)
+++ maven/mercury/trunk/mercury-core/src/test/resources/localTestRepoRemoteM2/org/apache/maven/mercury/mercury-pom/maven-metadata-staged.releases.xml Wed Apr 22 22:56:48 2009
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+     Licensed to the Apache Software Foundation (ASF) under one
+     or more contributor license agreements.  See the NOTICE file
+     distributed with this work for additional information
+     regarding copyright ownership.  The ASF licenses this file
+     to you under the Apache License, Version 2.0 (the
+     "License"); you may not use this file except in compliance
+     with the License.  You may obtain a copy of the License at
+    
+      http://www.apache.org/licenses/LICENSE-2.0
+    
+     Unless required by applicable law or agreed to in writing,
+     software distributed under the License is distributed on an
+     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+     KIND, either express or implied.  See the License for the
+     specific language governing permissions and limitations
+     under the License.
+
+-->
+<metadata>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury-pom</artifactId>
+  <version>1-alpha-1</version>
+  <versioning>
+    <release>1-alpha-1</release>
+    <versions>
+      <version>1-alpha-1</version>
+    </versions>
+    <lastUpdated>20081003184625</lastUpdated>
+  </versioning>
+</metadata>