You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by tr...@apache.org on 2006/05/15 04:57:08 UTC

svn commit: r406508 - in /directory: releases/pom-1.0.4.xml trunks/apacheds/pom.xml trunks/daemon/pom.xml trunks/mina/pom.xml trunks/pom.xml trunks/shared/pom.xml

Author: trustin
Date: Sun May 14 19:57:07 2006
New Revision: 406508

URL: http://svn.apache.org/viewcvs?rev=406508&view=rev
Log:
* Added the root build POM version 1.0.4 which is already in the M2 repository but wasn't released
* Updated all POMs to depend on the latest release instead of the latest snapshot



Added:
    directory/releases/pom-1.0.4.xml   (with props)
Modified:
    directory/trunks/apacheds/pom.xml
    directory/trunks/daemon/pom.xml
    directory/trunks/mina/pom.xml
    directory/trunks/pom.xml
    directory/trunks/shared/pom.xml

Added: directory/releases/pom-1.0.4.xml
URL: http://svn.apache.org/viewcvs/directory/releases/pom-1.0.4.xml?rev=406508&view=auto
==============================================================================
--- directory/releases/pom-1.0.4.xml (added)
+++ directory/releases/pom-1.0.4.xml Sun May 14 19:57:07 2006
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.directory</groupId>
+  <version>1.0.4</version>
+  <artifactId>build</artifactId>
+  <name>Apache Directory Build</name>
+  <inceptionYear>2004</inceptionYear>
+  <packaging>pom</packaging>
+  <modules>
+    <module>mina</module>
+    <module>apacheds</module>
+    <module>shared</module>
+    <module>daemon</module>
+  </modules>
+  <dependencies>
+   <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <repositories>
+    <!-- For snapshots (no release jars or non-apache jars)           -->
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>http://cvs.apache.org/maven-snapshot-repository</url>
+    </repository>
+    
+    <!-- Temp repo for 3rd party jars that are not in ibiblio.org yet.-->
+    <!-- Artifacts in repo should be requested for ibiblio upload &   -->
+    <!-- removed from this repository - this repo will disappear.     -->
+    <repository>
+      <id>safehaus</id>
+      <name>Alternate Repository for Missing Ibiblio Artifacts</name>
+      <url>http://m2.safehaus.org</url>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <id>snapshots</id>
+      <name>snapshot plugins</name>
+      <url>http://snapshots.maven.codehaus.org/maven2</url>
+    </pluginRepository>
+    <pluginRepository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Plugins</name>
+      <url>http://cvs.apache.org/maven-snapshot-repository</url>
+    </pluginRepository>
+  </pluginRepositories>
+
+  <distributionManagement>
+    <snapshotRepository>
+      <id>apache.snapshots</id>
+      <url>
+        scp://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository
+      </url>
+    </snapshotRepository>
+    <repository>
+      <name>ASF Mirrored M2 Distributions</name>
+      <id>apache.snapshots</id>
+      <url>
+        scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository
+      </url>
+    </repository>
+
+  </distributionManagement>
+
+  <licenses>
+    <license>
+      <name>Apache Software License 2.0</name>
+      <url>http://directory.apache.org/license.html</url>
+    </license>
+  </licenses>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.4</source>
+          <target>1.4</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: directory/releases/pom-1.0.4.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: directory/trunks/apacheds/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/apacheds/pom.xml?rev=406508&r1=406507&r2=406508&view=diff
==============================================================================
--- directory/trunks/apacheds/pom.xml (original)
+++ directory/trunks/apacheds/pom.xml Sun May 14 19:57:07 2006
@@ -5,7 +5,7 @@
   <parent>
     <groupId>org.apache.directory</groupId>
     <artifactId>build</artifactId>
-    <version>1.0.5-SNAPSHOT</version>
+    <version>1.0.4</version>
   </parent>
 
   <groupId>org.apache.directory.server</groupId>

Modified: directory/trunks/daemon/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/daemon/pom.xml?rev=406508&r1=406507&r2=406508&view=diff
==============================================================================
--- directory/trunks/daemon/pom.xml (original)
+++ directory/trunks/daemon/pom.xml Sun May 14 19:57:07 2006
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.directory</groupId>
     <artifactId>build</artifactId>
-    <version>1.0.5-SNAPSHOT</version>
+    <version>1.0.4</version>
   </parent>
   <groupId>org.apache.directory.daemon</groupId>
   <artifactId>build</artifactId>

Modified: directory/trunks/mina/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/mina/pom.xml?rev=406508&r1=406507&r2=406508&view=diff
==============================================================================
--- directory/trunks/mina/pom.xml (original)
+++ directory/trunks/mina/pom.xml Sun May 14 19:57:07 2006
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.directory</groupId>
     <artifactId>build</artifactId>
-    <version>1.0.5-SNAPSHOT</version>
+    <version>1.0.4</version>
   </parent>
   <groupId>org.apache.directory.mina</groupId>
   <version>0.9.5-SNAPSHOT</version>

Modified: directory/trunks/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/pom.xml?rev=406508&r1=406507&r2=406508&view=diff
==============================================================================
--- directory/trunks/pom.xml (original)
+++ directory/trunks/pom.xml Sun May 14 19:57:07 2006
@@ -2,7 +2,7 @@
 <project>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.apache.directory</groupId>
-  <version>1.0.5-SNAPSHOT</version>
+  <version>1.0.4</version>
   <artifactId>build</artifactId>
   <name>Apache Directory Build</name>
   <inceptionYear>2004</inceptionYear>

Modified: directory/trunks/shared/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunks/shared/pom.xml?rev=406508&r1=406507&r2=406508&view=diff
==============================================================================
--- directory/trunks/shared/pom.xml (original)
+++ directory/trunks/shared/pom.xml Sun May 14 19:57:07 2006
@@ -4,7 +4,7 @@
   <parent>
     <groupId>org.apache.directory</groupId>
     <artifactId>build</artifactId>
-    <version>1.0.5-SNAPSHOT</version>
+    <version>1.0.4</version>
   </parent>
   <groupId>org.apache.directory.shared</groupId>
   <artifactId>build</artifactId>