You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jl...@apache.org on 2006/04/13 00:18:54 UTC

svn commit: r393629 - in /geronimo/trunk/modules: interop/pom.xml pom.xml

Author: jlaskowski
Date: Wed Apr 12 15:18:47 2006
New Revision: 393629

URL: http://svn.apache.org/viewcvs?rev=393629&view=rev
Log:
GERONIMO-1730 - Module migration to Maven 2: interop

Work in progress: there's Ant's build.xml file to migrate yet

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

Added: geronimo/trunk/modules/interop/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/interop/pom.xml?rev=393629&view=auto
==============================================================================
--- geronimo/trunk/modules/interop/pom.xml (added)
+++ geronimo/trunk/modules/interop/pom.xml Wed Apr 12 15:18:47 2006
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  
+  Copyright 2006 The Apache Software Foundation
+  
+  Licensed 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.
+-->
+
+<!-- $Rev$ $Date$ -->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.geronimo.modules</groupId>
+    <artifactId>modules-parent</artifactId>
+    <version>1.2-SNAPSHOT</version>
+  </parent>
+  <artifactId>geronimo-interop</artifactId>
+  <version>${geronimoVersion}</version>
+  <name>Geronimo :: Interop</name>
+  <description>Geronimo Interop</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.geronimo.modules</groupId>
+      <artifactId>geronimo-kernel</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.modules</groupId>
+      <artifactId>geronimo-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>geronimo-spec</groupId>
+      <artifactId>geronimo-spec-corba</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-ejb_2.1_spec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib-nodep</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>mx4j</groupId>
+      <artifactId>mx4j</artifactId>
+    </dependency>
+  </dependencies>
+</project>

Propchange: geronimo/trunk/modules/interop/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: geronimo/trunk/modules/interop/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/trunk/modules/pom.xml
URL: http://svn.apache.org/viewcvs/geronimo/trunk/modules/pom.xml?rev=393629&r1=393628&r2=393629&view=diff
==============================================================================
--- geronimo/trunk/modules/pom.xml (original)
+++ geronimo/trunk/modules/pom.xml Wed Apr 12 15:18:47 2006
@@ -61,6 +61,7 @@
         <module>installer-processing</module>
         <module>installer-support</module>
         <module>interceptor</module>
+        <module>interop</module>
         <module>j2ee</module>
         <module>j2ee-builder</module>
         <module>j2ee-schema</module>