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 2007/09/01 00:40:00 UTC

svn commit: r571630 - in /geronimo/sandbox/gshell/trunk: gshell-assembly/ gshell-commands/ gshell-commands/gshell-bsf/ gshell-commands/gshell-optional/ gshell-commands/gshell-scripting-commands/ gshell-commands/gshell-standard-commands/ gshell-commands...

Author: jdillon
Date: Fri Aug 31 15:39:59 2007
New Revision: 571630

URL: http://svn.apache.org/viewvc?rev=571630&view=rev
Log:
Tidy up, prepare to move command modules to separate groupId

Added:
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/
      - copied from r571628, geronimo/sandbox/gshell/trunk/gshell-commands/gshell-scripting-commands/
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/
      - copied from r571628, geronimo/sandbox/gshell/trunk/gshell-commands/gshell-standard-commands/
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/
      - copied from r571628, geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs-commands/
Removed:
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-scripting-commands/
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-standard-commands/
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs-commands/
Modified:
    geronimo/sandbox/gshell/trunk/gshell-assembly/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-commands/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-testsuite/pom.xml

Modified: geronimo/sandbox/gshell/trunk/gshell-assembly/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-assembly/pom.xml?rev=571630&r1=571629&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-assembly/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-assembly/pom.xml Fri Aug 31 15:39:59 2007
@@ -61,20 +61,20 @@
         
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-standard-commands</artifactId>
+            <artifactId>gshell-optional</artifactId>
             <version>${pom.version}</version>
         </dependency>
 
         <!--
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-scripting-commands</artifactId>
+            <artifactId>gshell-bsf</artifactId>
             <version>${pom.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-vfs-commands</artifactId>
+            <artifactId>gshell-vfs</artifactId>
             <version>${pom.version}</version>
         </dependency>
         -->

Modified: geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/pom.xml?rev=571630&r1=571628&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-commands/gshell-bsf/pom.xml Fri Aug 31 15:39:59 2007
@@ -30,8 +30,8 @@
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
-    <artifactId>gshell-scripting-commands</artifactId>
-    <name>GShell Commands :: Scripting</name>
+    <artifactId>gshell-bsf</artifactId>
+    <name>GShell Commands :: BSF</name>
 
     <dependencies>
         <!--

Modified: geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/pom.xml?rev=571630&r1=571628&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-commands/gshell-optional/pom.xml Fri Aug 31 15:39:59 2007
@@ -30,7 +30,7 @@
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
-    <artifactId>gshell-standard-commands</artifactId>
-    <name>GShell Commands :: Standard</name>
+    <artifactId>gshell-optional</artifactId>
+    <name>GShell Commands :: Optional</name>
     
 </project>

Modified: geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/pom.xml?rev=571630&r1=571628&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-commands/gshell-vfs/pom.xml Fri Aug 31 15:39:59 2007
@@ -30,7 +30,7 @@
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
-    <artifactId>gshell-vfs-commands</artifactId>
+    <artifactId>gshell-vfs</artifactId>
     <name>GShell Commands :: VFS</name>
 
     <dependencies>

Modified: geronimo/sandbox/gshell/trunk/gshell-commands/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-commands/pom.xml?rev=571630&r1=571629&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-commands/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-commands/pom.xml Fri Aug 31 15:39:59 2007
@@ -43,9 +43,9 @@
     </dependencies>
     
     <modules>
-        <module>gshell-standard-commands</module>
-        <module>gshell-scripting-commands</module>
-        <module>gshell-vfs-commands</module>
+        <module>gshell-optional</module>
+        <module>gshell-bsf</module>
+        <module>gshell-vfs</module>
     </modules>
     
 </project>

Modified: geronimo/sandbox/gshell/trunk/gshell-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-testsuite/pom.xml?rev=571630&r1=571629&r2=571630&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-testsuite/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-testsuite/pom.xml Fri Aug 31 15:39:59 2007
@@ -48,13 +48,13 @@
 
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-standard-commands</artifactId>
+            <artifactId>gshell-optional</artifactId>
             <version>${pom.version}</version>
         </dependency>
 
         <dependency>
             <groupId>org.apache.geronimo.gshell</groupId>
-            <artifactId>gshell-scripting-commands</artifactId>
+            <artifactId>gshell-bsf</artifactId>
             <version>${pom.version}</version>
         </dependency>