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 2008/10/04 00:42:19 UTC

svn commit: r701557 - /maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml

Author: ogusakov
Date: Fri Oct  3 15:42:19 2008
New Revision: 701557

URL: http://svn.apache.org/viewvc?rev=701557&view=rev
Log:
releasing mercury-1.0.0-alpha-1

Added:
    maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml

Added: maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml?rev=701557&view=auto
==============================================================================
--- maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml (added)
+++ maven/sandbox/tags/mercury-1.0.0-alpha-1/pom.xml Fri Oct  3 15:42:19 2008
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+  <groupId>org.apache.maven.mercury</groupId>
+  <artifactId>mercury</artifactId>
+  <packaging>pom</packaging>
+  <name>Mercury Reactor:                ${project.version}</name>
+  <version>1.0.0-alpha-1</version>
+  
+  <properties>
+    
+    <distMgmtSnapshotsId>apache.snapshots</distMgmtSnapshotsId>
+    <distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
+    <distMgmtSnapshotsUrl>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</distMgmtSnapshotsUrl>
+
+    <distMgmtReleasesId>apache.staging</distMgmtReleasesId>
+    <distMgmtReleasesName>Apache Development Staging Repository</distMgmtReleasesName>
+    <distMgmtReleasesUrl>http://localhost:8081/nexus/content/repositories/staging</distMgmtReleasesUrl>
+    
+  </properties>
+
+  <modules>
+    <module>mercury-pom</module>
+    <module>mercury-artifact</module>
+    <module>mercury-md</module>
+    <module>mercury-repo</module>
+    <module>mercury-transport</module>
+    <module>mercury-external</module>
+    <module>mercury-crypto</module>
+    <module>mercury-util</module>
+    <module>mercury-it</module>
+    <module>wagon-mercury</module>
+  </modules>
+
+  <build>
+    <defaultGoal>install</defaultGoal>
+  </build>
+  
+  <repositories>
+  	<repository>
+  		<id>sona.staging</id>
+  		<url>http://repository.sonatype.org/content/repositories/staging</url>
+  	</repository>
+    <repository>
+        <id>sona.central</id>
+        <url>http://repository.sonatype.org/content/groups/public</url>
+        <snapshots><enabled>true</enabled></snapshots>
+        <releases><enabled>true</enabled></releases>
+    </repository>
+  </repositories>
+  
+  <distributionManagement>
+    <repository>
+      <id>${distMgmtReleasesId}</id>
+      <name>${distMgmtReleasesName}</name>
+      <url>${distMgmtReleasesUrl}</url>
+    </repository>
+    <snapshotRepository>
+      <id>${distMgmtSnapshotsId}</id>
+      <name>${distMgmtSnapshotsName}</name>
+      <url>${distMgmtSnapshotsUrl}</url>
+    </snapshotRepository>
+  </distributionManagement>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/sandbox/tags/mercury-1.0.0-alpha-1</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/sandbox/tags/mercury-1.0.0-alpha-1</developerConnection>
+  </scm>
+  
+
+</project>