You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by br...@apache.org on 2005/12/11 23:49:28 UTC

svn commit: r356054 - in /jakarta/commons/sandbox: exec/trunk/pom.xml openpgp/trunk/pom.xml sandbox-parent/pom.xml

Author: brett
Date: Sun Dec 11 14:49:20 2005
New Revision: 356054

URL: http://svn.apache.org/viewcvs?rev=356054&view=rev
Log:
introduce a parent POM

Added:
    jakarta/commons/sandbox/sandbox-parent/pom.xml   (with props)
Modified:
    jakarta/commons/sandbox/exec/trunk/pom.xml
    jakarta/commons/sandbox/openpgp/trunk/pom.xml

Modified: jakarta/commons/sandbox/exec/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/exec/trunk/pom.xml?rev=356054&r1=356053&r2=356054&view=diff
==============================================================================
--- jakarta/commons/sandbox/exec/trunk/pom.xml (original)
+++ jakarta/commons/sandbox/exec/trunk/pom.xml Sun Dec 11 14:49:20 2005
@@ -1,20 +1,15 @@
-<project>
+<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.commons</groupId>
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>sandbox-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
   <artifactId>commons-exec</artifactId>
   <version>1.0-SNAPSHOT</version>
   <name>Commons Exec</name>
   <url>http://jakarta.apache.org/commons/sandbox/exec/</url>
-  <ciManagement>
-    <system>continuum</system>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>brett@apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
   <dependencies>
     <dependency>
       <groupId>commons-logging</groupId>
@@ -55,65 +50,11 @@
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/exec/trunk</developerConnection>
     <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/exec/trunk</url>
   </scm>
-  <!-- TODO: these will be moved to a commons parent eventually -->
-  <organization>
-    <name>The Apache Software Foundation</name>
-    <url>http://jakarta.apache.org</url>
-  </organization>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>/LICENSE.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-      </plugin>
-    </plugins>
-  </reporting>
-  <mailingLists>
-    <mailingList>
-      <name>Commons Dev List</name>
-      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
-      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
-      <post>commons-dev@jakarta.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev</archive>
-    </mailingList>
-    <mailingList>
-      <name>Commons User List</name>
-      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
-      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
-      <post>commons-user@jakarta.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user</archive>
-    </mailingList>
-  </mailingLists>
   <distributionManagement>
-    <!-- No releases until out of sandbox, besides - m2 repo not up yet
-    <repository>
-      <id>apache.releases</id>
-      <name>Apache Release Repository</name>
-      <url>scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
-    </repository>
-    -->
-    <!-- TODO: setup m2 repo in new layout -->
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>scp://minotaur.apache.org/www/cvs.apache.org/repository</url>
-      <layout>legacy</layout>
-    </snapshotRepository>
     <site>
       <id>website</id>
       <name>Apache Website</name>
       <url>scp://minotaur.apache.org/www/jakarta.apache.org/commons/sandbox/exec/</url>
     </site>
   </distributionManagement>
-  <issueManagement>
-    <system>bugzilla</system>
-    <url>http://issues.apache.org/bugzilla/</url>
-  </issueManagement>
 </project>

Modified: jakarta/commons/sandbox/openpgp/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/openpgp/trunk/pom.xml?rev=356054&r1=356053&r2=356054&view=diff
==============================================================================
--- jakarta/commons/sandbox/openpgp/trunk/pom.xml (original)
+++ jakarta/commons/sandbox/openpgp/trunk/pom.xml Sun Dec 11 14:49:20 2005
@@ -1,22 +1,15 @@
 <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.commons</groupId>
+  <parent>
+    <groupId>org.apache.commons</groupId>
+    <artifactId>sandbox-parent</artifactId>
+    <version>1.0-SNAPSHOT</version>
+  </parent>
   <artifactId>commons-openpgp</artifactId>
   <version>1.0-SNAPSHOT</version>
   <name>Commons OpenPGP</name>
   <url>http://jakarta.apache.org/commons/sandbox/openpgp/</url>
-  <ciManagement>
-    <system>continuum</system>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <!-- TODO: temporary until the library is established -->
-          <address>brett@apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
   <dependencies>
     <!-- we need an optional dep on JCE for JDK 1.3 and lower -->
     <dependency>
@@ -49,93 +42,15 @@
   </developers>
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk</connection>
-    <developerConnection>
-      scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk</developerConnection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk</developerConnection>
     <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/openpgp/trunk</url>
   </scm>
-  <!-- TODO: these will be moved to a commons parent eventually -->
-  <organization>
-    <name>The Apache Software Foundation</name>
-    <url>http://jakarta.apache.org</url>
-  </organization>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>/LICENSE.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <mailingLists>
-    <mailingList>
-      <name>Commons Dev List</name>
-      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
-      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
-      <post>commons-dev@jakarta.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev</archive>
-    </mailingList>
-    <mailingList>
-      <name>Commons User List</name>
-      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
-      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
-      <post>commons-user@jakarta.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user</archive>
-    </mailingList>
-  </mailingLists>
   <distributionManagement>
-    <!-- No releases until out of sandbox, besides - m2 repo not up yet
-    <repository>
-      <id>apache.releases</id>
-      <name>Apache Release Repository</name>
-      <url>scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
-    </repository>
-    -->
-    <!-- TODO: setup m2 repo in new layout -->
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
-    </snapshotRepository>
     <site>
       <id>website</id>
       <name>Apache Website</name>
       <url>scp://minotaur.apache.org/www/jakarta.apache.org/commons/sandbox/openpgp/</url>
     </site>
   </distributionManagement>
-  <issueManagement>
-    <system>bugzilla</system>
-    <url>http://issues.apache.org/bugzilla/</url>
-  </issueManagement>
-  <build>
-    <plugins>
-      <!-- TODO: later use toolchain support to do compilation on an external JDK 1.3+ compiler -->
-      <plugin>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.3</source>
-          <target>1.3</target>
-        </configuration>
-      </plugin>
-      <plugin>
-        <artifactId>maven-idea-plugin</artifactId>
-        <configuration>
-          <jdkLevel>1.3</jdkLevel>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <reporting>
-    <plugins>
-      <!-- TODO: should be omitted when there are no tests to run -->
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-clover-plugin</artifactId>
-        <!-- TODO: why are these needed? -->
-        <configuration>
-          <flushPolicy>threaded</flushPolicy>
-          <flushInterval>100</flushInterval>
-        </configuration>
-      </plugin>
-    </plugins>
-  </reporting>
 </project>
 

Added: jakarta/commons/sandbox/sandbox-parent/pom.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/sandbox-parent/pom.xml?rev=356054&view=auto
==============================================================================
--- jakarta/commons/sandbox/sandbox-parent/pom.xml (added)
+++ jakarta/commons/sandbox/sandbox-parent/pom.xml Sun Dec 11 14:49:20 2005
@@ -0,0 +1,109 @@
+<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.commons</groupId>
+  <!-- TODO: dummy version. In Maven 2.1, this will be auto-versioned being a generic parent -->
+  <version>1.0-SNAPSHOT</version>
+  <name>Jakarta Commons Sandbox</name>
+  <url>http://jakarta.apache.org/commons/sandbox/</url>
+  <ciManagement>
+    <system>continuum</system>
+    <notifiers>
+      <notifier>
+        <configuration>
+          <!-- TODO: temporary until the continuum setup is final -->
+          <address>brett@apache.org</address>
+        </configuration>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox</developerConnection>
+    <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox</url>
+  </scm>
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://jakarta.apache.org</url>
+  </organization>
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>/LICENSE.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <mailingLists>
+    <mailingList>
+      <name>Commons Dev List</name>
+      <subscribe>commons-dev-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-dev-unsubscribe@jakarta.apache.org</unsubscribe>
+      <post>commons-dev@jakarta.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-dev</archive>
+    </mailingList>
+    <mailingList>
+      <name>Commons User List</name>
+      <subscribe>commons-user-subscribe@jakarta.apache.org</subscribe>
+      <unsubscribe>commons-user-unsubscribe@jakarta.apache.org</unsubscribe>
+      <post>commons-user@jakarta.apache.org</post>
+      <archive>http://mail-archives.apache.org/mod_mbox/jakarta-commons-user</archive>
+    </mailingList>
+  </mailingLists>
+  <distributionManagement>
+    <!-- No releases until out of sandbox, besides - m2 repo not up yet
+    <repository>
+      <id>apache.releases</id>
+      <name>Apache Release Repository</name>
+      <url>scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
+    </repository>
+    -->
+    <!-- TODO: setup m2 repo in new layout -->
+    <snapshotRepository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      <url>scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>website</id>
+      <name>Apache Website</name>
+      <url>scp://minotaur.apache.org/www/jakarta.apache.org/commons/sandbox/</url>
+    </site>
+  </distributionManagement>
+  <issueManagement>
+    <system>bugzilla</system>
+    <url>http://issues.apache.org/bugzilla/</url>
+  </issueManagement>
+  <build>
+    <plugins>
+      <!-- TODO: later use toolchain support to do compilation on an external JDK 1.3+ compiler -->
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.3</source>
+          <target>1.3</target>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-idea-plugin</artifactId>
+        <configuration>
+          <jdkLevel>1.3</jdkLevel>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <reporting>
+    <plugins>
+      <!-- TODO: should be omitted when there are no tests to run -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-clover-plugin</artifactId>
+        <!-- TODO: why are these needed? -->
+        <configuration>
+          <flushPolicy>threaded</flushPolicy>
+          <flushInterval>100</flushInterval>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>
+

Propchange: jakarta/commons/sandbox/sandbox-parent/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/sandbox/sandbox-parent/pom.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: jakarta/commons/sandbox/sandbox-parent/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org