You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by va...@apache.org on 2007/10/24 09:37:57 UTC

svn commit: r587806 - in /geronimo/server: branches/2.0/configs/sharedlib/pom.xml trunk/configs/sharedlib/pom.xml

Author: vamsic007
Date: Wed Oct 24 00:37:53 2007
New Revision: 587806

URL: http://svn.apache.org/viewvc?rev=587806&view=rev
Log:
GERONIMO-3546 sharedlib config should not start rmi-naming when used with offline deployer
  o Replacing rmi-naming dependency with j2ee-system resulted in NCDEF's for spec classes.  Reinstated the rmi-naming dependency with <import>classes</import>
  o See previous rev 587515

Modified:
    geronimo/server/branches/2.0/configs/sharedlib/pom.xml
    geronimo/server/trunk/configs/sharedlib/pom.xml

Modified: geronimo/server/branches/2.0/configs/sharedlib/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.0/configs/sharedlib/pom.xml?rev=587806&r1=587805&r2=587806&view=diff
==============================================================================
--- geronimo/server/branches/2.0/configs/sharedlib/pom.xml (original)
+++ geronimo/server/branches/2.0/configs/sharedlib/pom.xml Wed Oct 24 00:37:53 2007
@@ -42,6 +42,14 @@
             <type>car</type>
         </dependency>
         
+        <!-- Needed for offline deployer -->
+        <dependency>
+            <groupId>org.apache.geronimo.configs</groupId>
+            <artifactId>rmi-naming</artifactId>
+            <version>${version}</version>
+            <type>car</type>
+            <scope>runtime</scope>
+        </dependency>
     </dependencies>
     
 </project>

Modified: geronimo/server/trunk/configs/sharedlib/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/configs/sharedlib/pom.xml?rev=587806&r1=587805&r2=587806&view=diff
==============================================================================
--- geronimo/server/trunk/configs/sharedlib/pom.xml (original)
+++ geronimo/server/trunk/configs/sharedlib/pom.xml Wed Oct 24 00:37:53 2007
@@ -40,6 +40,15 @@
             <version>${version}</version>
             <type>car</type>
         </dependency>
+
+        <!-- Needed for offline deployer -->
+        <dependency>
+            <groupId>org.apache.geronimo.configs</groupId>
+            <artifactId>rmi-naming</artifactId>
+            <version>${version}</version>
+            <type>car</type>
+            <scope>runtime</scope>
+        </dependency>
     </dependencies>
 
     <build>