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/06 22:26:46 UTC

svn commit: r573358 - in /geronimo/sandbox/gshell/trunk: ./ gshell-ansi/ gshell-clp/ gshell-common/ gshell-i18n/ gshell-prefs/ gshell-support/ gshell-support/gshell-ansi/ gshell-support/gshell-clp/ gshell-support/gshell-common/ gshell-support/gshell-i1...

Author: jdillon
Date: Thu Sep  6 13:26:44 2007
New Revision: 573358

URL: http://svn.apache.org/viewvc?rev=573358&view=rev
Log:
Move all of the support modules to gshell-support

Added:
    geronimo/sandbox/gshell/trunk/gshell-support/
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/
      - copied from r573357, geronimo/sandbox/gshell/trunk/gshell-ansi/
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/
      - copied from r573357, geronimo/sandbox/gshell/trunk/gshell-clp/
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/
      - copied from r573357, geronimo/sandbox/gshell/trunk/gshell-common/
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/
      - copied from r573357, geronimo/sandbox/gshell/trunk/gshell-i18n/
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/
      - copied from r573357, geronimo/sandbox/gshell/trunk/gshell-prefs/
    geronimo/sandbox/gshell/trunk/gshell-support/pom.xml   (with props)
    geronimo/sandbox/gshell/trunk/gshell-support/src/
    geronimo/sandbox/gshell/trunk/gshell-support/src/site/
    geronimo/sandbox/gshell/trunk/gshell-support/src/site/apt/
    geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml   (with props)
Removed:
    geronimo/sandbox/gshell/trunk/gshell-ansi/
    geronimo/sandbox/gshell/trunk/gshell-clp/
    geronimo/sandbox/gshell/trunk/gshell-common/
    geronimo/sandbox/gshell/trunk/gshell-i18n/
    geronimo/sandbox/gshell/trunk/gshell-prefs/
Modified:
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/pom.xml
    geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/pom.xml
    geronimo/sandbox/gshell/trunk/pom.xml

Modified: geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-support/gshell-ansi/pom.xml Thu Sep  6 13:26:44 2007
@@ -26,12 +26,12 @@
     
     <parent>
         <groupId>org.apache.geronimo.gshell</groupId>
-        <artifactId>gshell</artifactId>
+        <artifactId>gshell-support</artifactId>
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
     <artifactId>gshell-ansi</artifactId>
-    <name>GShell ANSI</name>
+    <name>GShell Support :: ANSI</name>
     
     <description>
         Provides support for using ANSI color escape-codes.
@@ -47,12 +47,6 @@
         <dependency>
             <groupId>jline</groupId>
             <artifactId>jline</artifactId>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Modified: geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-support/gshell-clp/pom.xml Thu Sep  6 13:26:44 2007
@@ -26,12 +26,12 @@
     
     <parent>
         <groupId>org.apache.geronimo.gshell</groupId>
-        <artifactId>gshell</artifactId>
+        <artifactId>gshell-support</artifactId>
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
     <artifactId>gshell-clp</artifactId>
-    <name>GShell Command-Line Processor (CLP)</name>
+    <name>GShell Support :: Command-Line Processor (CLP)</name>
     
     <description>
         Annotation-based command-line processing support.
@@ -42,12 +42,6 @@
             <groupId>org.apache.geronimo.gshell</groupId>
             <artifactId>gshell-common</artifactId>
             <version>${pom.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Modified: geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-support/gshell-common/pom.xml Thu Sep  6 13:26:44 2007
@@ -26,12 +26,12 @@
     
     <parent>
         <groupId>org.apache.geronimo.gshell</groupId>
-        <artifactId>gshell</artifactId>
+        <artifactId>gshell-support</artifactId>
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
     <artifactId>gshell-common</artifactId>
-    <name>GShell Common</name>
+    <name>GShell Support :: Common</name>
     
     <description>
         Common support classes.
@@ -41,12 +41,6 @@
         <dependency>
             <groupId>org.codehaus.plexus</groupId>
             <artifactId>plexus-utils</artifactId>
-        </dependency>
-        
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Modified: geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-support/gshell-i18n/pom.xml Thu Sep  6 13:26:44 2007
@@ -26,12 +26,12 @@
     
     <parent>
         <groupId>org.apache.geronimo.gshell</groupId>
-        <artifactId>gshell</artifactId>
+        <artifactId>gshell-support</artifactId>
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
     <artifactId>gshell-i18n</artifactId>
-    <name>GShell i18n</name>
+    <name>GShell Support :: i18n</name>
 
     <description>
         Internationalization support.
@@ -42,12 +42,6 @@
             <groupId>org.apache.geronimo.gshell</groupId>
             <artifactId>gshell-common</artifactId>
             <version>${pom.version}</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Modified: geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-support/gshell-prefs/pom.xml Thu Sep  6 13:26:44 2007
@@ -26,12 +26,12 @@
     
     <parent>
         <groupId>org.apache.geronimo.gshell</groupId>
-        <artifactId>gshell</artifactId>
+        <artifactId>gshell-support</artifactId>
         <version>1.0-alpha-1-SNAPSHOT</version>
     </parent>
     
     <artifactId>gshell-prefs</artifactId>
-    <name>GShell Preferences</name>
+    <name>GShell Support :: Preferences</name>
     
     <description>
         Annotation-based preferences support.
@@ -42,12 +42,6 @@
             <groupId>org.apache.geronimo.gshell</groupId>
             <artifactId>gshell-common</artifactId>
             <version>${pom.version}</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
         </dependency>
     </dependencies>
 

Added: geronimo/sandbox/gshell/trunk/gshell-support/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/pom.xml?rev=573358&view=auto
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/pom.xml (added)
+++ geronimo/sandbox/gshell/trunk/gshell-support/pom.xml Thu Sep  6 13:26:44 2007
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.geronimo.gshell</groupId>
+        <artifactId>gshell</artifactId>
+        <version>1.0-alpha-1-SNAPSHOT</version>
+    </parent>
+    
+    <artifactId>gshell-support</artifactId>
+    <name>GShell Support</name>
+    <packaging>pom</packaging>
+    
+    <description>
+        Support modules for GShell fluff.
+    </description>
+    
+    <modules>
+        <module>gshell-ansi</module>
+        <module>gshell-clp</module>
+        <module>gshell-common</module>
+        <module>gshell-i18n</module>
+        <module>gshell-prefs</module>
+    </modules>
+    
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    
+</project>
\ No newline at end of file

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml?rev=573358&view=auto
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml (added)
+++ geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml Thu Sep  6 13:26:44 2007
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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 name="${project.name}">
+    
+    <body>
+        
+        ${parentProject}
+        
+        ${modules}
+        
+        ${reports}
+        
+    </body>
+
+</project>
+
+

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/sandbox/gshell/trunk/gshell-support/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/sandbox/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/pom.xml?rev=573358&r1=573357&r2=573358&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/pom.xml Thu Sep  6 13:26:44 2007
@@ -332,11 +332,7 @@
     
     <modules>
         <module>gshell-diet</module>
-        <module>gshell-common</module>
-        <module>gshell-i18n</module>
-        <module>gshell-clp</module>
-        <module>gshell-prefs</module>
-        <module>gshell-ansi</module>
+        <module>gshell-support</module>
         <module>gshell-bootstrap</module>
         <module>gshell-command-api</module>
         <module>javacc-maven-plugin</module>