You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/08 10:23:25 UTC

svn commit: r429610 - in /geronimo/trunk: applications/console/console-standard/pom.xml modules/deploy-tool/pom.xml modules/deployment/pom.xml

Author: jdillon
Date: Tue Aug  8 01:23:23 2006
New Revision: 429610

URL: http://svn.apache.org/viewvc?rev=429610&view=rev
Log:
(GERONIMO-2298) Augment dependencies that were expecting deps to be picked up transitively from geronimo-deploy-jsr88

Modified:
    geronimo/trunk/applications/console/console-standard/pom.xml
    geronimo/trunk/modules/deploy-tool/pom.xml
    geronimo/trunk/modules/deployment/pom.xml

Modified: geronimo/trunk/applications/console/console-standard/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/trunk/applications/console/console-standard/pom.xml?rev=429610&r1=429609&r2=429610&view=diff
==============================================================================
--- geronimo/trunk/applications/console/console-standard/pom.xml (original)
+++ geronimo/trunk/applications/console/console-standard/pom.xml Tue Aug  8 01:23:23 2006
@@ -71,6 +71,13 @@
         
         <dependency>
             <groupId>org.apache.geronimo.modules</groupId>
+            <artifactId>geronimo-connector-builder</artifactId>
+            <version>${pom.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.modules</groupId>
             <artifactId>geronimo-deploy-jsr88</artifactId>
             <version>${pom.version}</version>
             <scope>provided</scope>

Modified: geronimo/trunk/modules/deploy-tool/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/trunk/modules/deploy-tool/pom.xml?rev=429610&r1=429609&r2=429610&view=diff
==============================================================================
--- geronimo/trunk/modules/deploy-tool/pom.xml (original)
+++ geronimo/trunk/modules/deploy-tool/pom.xml Tue Aug  8 01:23:23 2006
@@ -74,7 +74,13 @@
             <artifactId>geronimo-deployment</artifactId>
             <version>${pom.version}</version>
         </dependency>
-
+        
+        <dependency>
+            <groupId>org.apache.geronimo.modules</groupId>
+            <artifactId>geronimo-service-builder</artifactId>
+            <version>${pom.version}</version>
+        </dependency>
+        
         <dependency>
             <groupId>org.apache.geronimo.modules</groupId>
             <artifactId>geronimo-deploy-jsr88</artifactId>

Modified: geronimo/trunk/modules/deployment/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/trunk/modules/deployment/pom.xml?rev=429610&r1=429609&r2=429610&view=diff
==============================================================================
--- geronimo/trunk/modules/deployment/pom.xml (original)
+++ geronimo/trunk/modules/deployment/pom.xml Tue Aug  8 01:23:23 2006
@@ -46,6 +46,9 @@
     </scm>
     
     <dependencies>
+        
+        <!-- Module Dependencies -->
+        
         <dependency>
             <groupId>org.apache.geronimo.modules</groupId>
             <artifactId>geronimo-kernel</artifactId>
@@ -64,6 +67,8 @@
             <version>${pom.version}</version>
         </dependency>
 
+        <!-- Thirdparty Dependencies -->
+        
         <dependency>
             <groupId>commons-logging</groupId>
             <artifactId>commons-logging</artifactId>
@@ -73,6 +78,7 @@
             <groupId>xml-resolver</groupId>
             <artifactId>xml-resolver</artifactId>
         </dependency>
+        
     </dependencies>
     
 </project>