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 2008/06/11 20:41:40 UTC

svn commit: r666780 - in /geronimo/gshell/trunk: gshell-buildsupport/gshell-maven-plugin/pom.xml gshell-commands/gshell-builtins/pom.xml gshell-remote/pom.xml

Author: jdillon
Date: Wed Jun 11 11:41:39 2008
New Revision: 666780

URL: http://svn.apache.org/viewvc?rev=666780&view=rev
Log:
Limit dependencies on gshell-core

Modified:
    geronimo/gshell/trunk/gshell-buildsupport/gshell-maven-plugin/pom.xml
    geronimo/gshell/trunk/gshell-commands/gshell-builtins/pom.xml
    geronimo/gshell/trunk/gshell-remote/pom.xml

Modified: geronimo/gshell/trunk/gshell-buildsupport/gshell-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-buildsupport/gshell-maven-plugin/pom.xml?rev=666780&r1=666779&r2=666780&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-buildsupport/gshell-maven-plugin/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-buildsupport/gshell-maven-plugin/pom.xml Wed Jun 11 11:41:39 2008
@@ -44,7 +44,7 @@
 
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-core</artifactId>
+            <artifactId>gshell-model</artifactId>
         </dependency>
         
         <dependency>

Modified: geronimo/gshell/trunk/gshell-commands/gshell-builtins/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-commands/gshell-builtins/pom.xml?rev=666780&r1=666779&r2=666780&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-commands/gshell-builtins/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-commands/gshell-builtins/pom.xml Wed Jun 11 11:41:39 2008
@@ -42,6 +42,21 @@
             <groupId>org.apache.geronimo.gshell.commands</groupId>
             <artifactId>gshell-command-support</artifactId>
         </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-model</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-plugin</artifactId>
+        </dependency>
+        
+        <!--
+        FIXME: This is currently needed for the 'help' command implementation, and should be removed once the
+               command has been refactored as well as the Layout API sorted/moved out of core.
+        -->
 
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>

Modified: geronimo/gshell/trunk/gshell-remote/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-remote/pom.xml?rev=666780&r1=666779&r2=666780&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-remote/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-remote/pom.xml Wed Jun 11 11:41:39 2008
@@ -44,11 +44,6 @@
             <groupId>org.apache.geronimo.gshell.commands</groupId>
             <artifactId>gshell-command-support</artifactId>
         </dependency>
-
-        <dependency>
-            <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-core</artifactId>
-        </dependency>
         
         <dependency>
             <groupId>org.slf4j</groupId>