You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jv...@apache.org on 2005/10/29 05:29:05 UTC

svn commit: r329362 - /geronimo/trunk/pom.xml

Author: jvanzyl
Date: Fri Oct 28 20:28:58 2005
New Revision: 329362

URL: http://svn.apache.org/viewcvs?rev=329362&view=rev
Log:
o adding top-level POM for use with freeorb at first but I will try and
  take down some of the low hanging fruit.

Added:
    geronimo/trunk/pom.xml   (with props)

Added: geronimo/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/pom.xml?rev=329362&view=auto
==============================================================================
--- geronimo/trunk/pom.xml (added)
+++ geronimo/trunk/pom.xml Fri Oct 28 20:28:58 2005
@@ -0,0 +1,146 @@
+<project>
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.geronimo</groupId>
+  <artifactId>geronimo</artifactId>
+  <name>Geronimo</name>
+  <version>1.0-SNAPSHOT</version>
+  <description>Geronimo parent</description>
+  <url>http://geronimo.apache.org</url>
+
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10220</url>
+  </issueManagement>
+
+  <ciManagement>
+    <system>continuum</system>
+    <notifiers>
+      <notifier>
+        <type>mail</type>
+        <sendOnError/>
+        <sendOnFailure/>
+        <address>dev@geronimo.org</address>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+  
+  <mailingLists>
+    <mailingList>
+      <name>Geronimo User List</name>
+      <subscribe>users-subscribe@geronimo.apache.org</subscribe>
+      <unsubscribe>users-unsubscribe@geronimo.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/geronimo-user/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Geronimo Developer List</name>
+      <subscribe>dev-subscribe@geronimo.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@geronimo.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/geronimo-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Source Control List</name>
+      <subscribe>scm-subscribe@geronimo.apache.org</subscribe>
+      <unsubscribe>scm-unsubscribe@geronimo.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/geronimo-scm/</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <id>adc</id>
+      <name>Alan D. Cabrera</name>
+      <roles>
+        <role>Commiter</role>
+        <role>PMC</role>
+      </roles>
+      <timezone>-8</timezone>
+    </developer>
+  </developers>
+
+  <repositories>
+    <repository>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <id>codehaus</id>
+      <name>Ibiblio Repository</name>
+      <url>http://www.ibiblio.org/maven2</url>
+    </repository>
+    <repository>
+      <id>apache</id>
+      <name>Apche Repository</name>
+      <url>http://cvs.apache.org/repository</url>
+      <layout>legacy</layout>
+    </repository>
+  </repositories>
+   
+  <modules>
+    <module>geronimo-orb</module>
+  </modules> 
+
+  <licenses>
+    <license>
+      <name>The Apache Software License, Version 2.0</name>
+      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+
+  <scm>
+    <connection>scm:svn:https://svn.apache.org/repos/asf/geronimo/</connection>
+    <developerConnection>scm:svn:https://${maven.username}@svn.apache.org/repos/asf/geronimo/</developerConnection>
+    <url>https://svn.apache.org/repos/asf/geronimo/</url>
+  </scm>
+
+  <organization>
+    <name>Geronimo</name>
+    <url>http://geronimo.apache.org/</url>
+  </organization>
+
+  <dependencyManagement>
+    <dependencies>
+      
+      <!-- =============================== -->
+      <!-- Required dependencies -->
+      <!-- =============================== -->
+
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.0.3</version>
+      </dependency>
+
+      <dependency>
+        <groupId>concurrent</groupId>
+        <artifactId>concurrent</artifactId>
+        <version>1.3.4</version>
+        <scope>runtime</scope>
+      </dependency>
+      
+      <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>1.2.8</version>
+        <scope>runtime</scope>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+  <dependencies>
+
+    <!-- =============================== -->
+    <!-- Testing dependencies -->
+    <!-- =============================== -->
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+ 
+  </dependencies>
+
+</project>

Propchange: geronimo/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"