You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/05/09 00:01:43 UTC

svn commit: r654644 [3/5] - in /servicemix/m2-repo/org/apache/geronimo/gshell: ./ commands/ commands/gshell-bsf/ commands/gshell-bsf/1.0-alpha-2-r654638/ commands/gshell-builtins/ commands/gshell-builtins/1.0-alpha-2-r654638/ commands/gshell-commands/ ...

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,155 @@
+<?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: 606423 $ $Date: 2007-12-22 09:50:41 +0100 (Sat, 22 Dec 2007) $ -->
+
+<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-diet</artifactId>
+        <version>1.0-alpha-2-r654638</version>
+    </parent>
+    
+    <artifactId>gshell-diet-log4j</artifactId>
+    <name>GShell Diet :: Log4j</name>
+    
+    <description>
+        A diet version of the Log4j distribution.
+    </description>
+    
+    <!--
+    NOTE: The log4j distribution contains a bunch of cruft, so we put it on a diet here for our usage.
+    -->
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-remote-resources-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>process</goal>
+                        </goals>
+                        <configuration>
+                            <resourceBundles>
+                                <resourceBundle>org.apache.geronimo.genesis:legal-bundle:1.3</resourceBundle>
+                            </resourceBundles>
+                            <properties>
+                                <preProjectText>
+This product includes/uses software(s) developed by 'Apache Software Foundation' (http://www.apache.org)
+  - Log4j (http://logging.apache.org/log4j/docs/)
+                                </preProjectText>
+                            </properties>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>log4j</groupId>
+                                    <artifactId>log4j</artifactId>
+                                    <classifier>sources</classifier>
+                                </artifactItem>
+                            </artifactItems>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <tasks>
+                                <mkdir dir="${project.build.directory}/generated-source/diet" />
+                                <copy todir="${project.build.directory}/generated-source/diet">
+                                    <fileset dir="${project.build.directory}/dependency">
+                                        <include name="org/apache/log4j/*.java" />
+                                        <include name="org/apache/log4j/spi/*.java" />
+                                        <include name="org/apache/log4j/helpers/*.java" />
+                                        <include name="org/apache/log4j/or/*.java" />
+                                        <include name="org/apache/log4j/config/*.java" />
+
+                                        <!-- Pick off some deprecated/unsed bits from the list -->
+                                        <exclude name="org/apache/log4j/Dispatcher.java" />
+                                        <exclude name="org/apache/log4j/spi/RootCategory.java" />
+                                    </fileset>
+                                </copy>
+                            </tasks>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>add-source</goal>
+                        </goals>
+                        <configuration>
+                            <sources>
+                                <source>${project.build.directory}/generated-source/diet</source>
+                            </sources>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <excludePackageNames>org.apache.log4j.*</excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+    
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+53a398f3b2eed8758cdd73a70d23854e
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/1.0-alpha-2-r654638/gshell-diet-log4j-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+278f700e05ac52336108b3611fa93dab14f6810c
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-diet-log4j</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215358</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+ff3e6fa641de0946bdd9ec20b6f60224
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet-log4j/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+89311b57f5b449683aa999b13ebe7b457209f454
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?><project name="GShell Diet">
+  <body>
+    <menu name="Modules" ref="modules">
+      <item name="GShell Diet :: Log4j" href="gshell-diet-log4j/index.html" />
+    </menu>
+    <menu ref="reports" />
+  </body>
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+0b5681202f0a896eccc59df0bee77996
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638-site.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+6f2d8294c0e358b0b68e327dbab8dd9039c63df2
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,65 @@
+<?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: 606423 $ $Date: 2007-12-22 09:50:41 +0100 (Sat, 22 Dec 2007) $ -->
+
+<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-2-r654638</version>
+    </parent>
+    
+    <artifactId>gshell-diet</artifactId>
+    <name>GShell Diet</name>
+    <packaging>pom</packaging>
+    
+    <description>
+        Put fat dependencies on a diet.
+    </description>
+    
+    <modules>
+        <module>gshell-diet-log4j</module>
+    </modules>
+    
+    <build>
+        <plugins>
+            <!--
+            NOTE: Ignore warnings from dieting dependencies.
+            -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <optimize>true</optimize>
+                    <debug>true</debug>
+                    <showDeprecation>false</showDeprecation>
+                    <showWarnings>false</showWarnings>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+158a156fe04c2ddede2772887779f384
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/1.0-alpha-2-r654638/gshell-diet-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+7372b3c16e802b0a8bae15766c234631f6e02873
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-diet</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215352</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+0fe628255755982e1ebd37a9f3b9eacd
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-diet/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+334d0e1fe0cc22131d00a8535f199c30964a1eca
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+982c66bda7b175c2804b3a3e86fa94c8
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638-sources.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+7f577eec09a77ef5161bb84bd2f5ecd2de687a5f
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+c40d240eac253d3759f6cd56b126c5d2
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+f64488d2a38b7f0478bf01586fe2f2931c140452
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+  <parent>
+    <artifactId>gshell</artifactId>
+    <groupId>org.apache.geronimo.gshell</groupId>
+    <version>1.0-alpha-2-r654638</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>gshell-embeddable</artifactId>
+  <name>GShell Embeddable</name>
+  <version>1.0-alpha-2-r654638</version>
+  <description>Provides an all in one dependency for easily embedding GShell.</description>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-remote-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>process</goal>
+            </goals>
+            <configuration>
+              <skip>true</skip>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <artifactSet>
+                <excludes>
+                  <exclude>org.codehaus.plexus:plexus-classworlds</exclude>
+                  <exclude>org.slf4j:slf4j-simple</exclude>
+                  <exclude>junit:junit</exclude>
+                  <exclude>org.apache.geronimo.genesis.config:logging-config</exclude>
+                </excludes>
+              </artifactSet>
+              <transformers>
+                <transformer />
+              </transformers>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo.groovy</groupId>
+        <artifactId>groovy-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>execute</goal>
+            </goals>
+            <configuration>
+              <source>// First clean up
+                                def dir = new File(project.build.directory, 'legal-work')
+                                ant.delete(dir: dir)
+                                ant.mkdir(dir: dir)
+                                
+                                // Then unpack the main artifact, excluding the legal muck
+                                def file = new File(project.build.directory, "${project.build.finalName}.jar")
+                                ant.unzip(src: file, dest: dir) {
+                                    patternset {
+                                        // Exclude any legal muck we find, cause its probably wrong
+                                        exclude(name: 'META-INF/LICENSE*')
+                                        exclude(name: 'META-INF/NOTICE*')
+                                        
+                                        // Exclude, as the LICENSE and NOTICE should include all legal details, this just makes things fuzzy
+                                        exclude(name: 'META-INF/NOTES.TXT')
+                                        
+                                        // Exclude this too, all details should be in the LICENSE and NOTICE files
+                                        exclude(name: 'licenses/**')
+                                    }
+                                }
+                                
+                                // HACK: maven-shade-plugin 1.0 seems to alter the basedir
+                                def basedir = project.basedir
+                                if (basedir.path.endsWith('target')) {
+                                    basedir = basedir.parentFile
+                                }
+                                
+                                // Then install our static bits
+                                def resources = new File(basedir, 'src/main/resources')
+                                
+                                ant.copy(todir: dir) {
+                                    fileset(dir: resources) {
+                                        include(name: '**')
+                                    }
+                                }
+                                
+                                // And make a copy for sanity and re-zip her up
+                                ant.copy(file: file, tofile: "${file}.orig", overwrite: true)
+                                ant.delete(file: file)
+                                ant.zip(destfile: file, basedir: dir)</source>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+      <version>1.5.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.genesis.config</groupId>
+      <artifactId>logging-config</artifactId>
+      <version>1.3</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+</project>
+

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+b6b4c23a36848fd845ba9c83cf324a4f
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/1.0-alpha-2-r654638/gshell-embeddable-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+2a9af9c4eef42ffbc85a5c5e705fe9906cdcaf3f
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-embeddable</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215509</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+6c0616815f6325133b283c807b6da7ea
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-embeddable/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+83da08f5ce347febbf6c7bb792bddea6b4062f66
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+78140eef4a7a57e6ee89a1ea68a0ad46
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638-sources.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+e884c4d123c5805fc69ce79b30a81ea67963b6a8
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+3ff4a752037564130ebd734bc9f630ea
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+763ca765577d186deea48809a81c04a095578d2f
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,171 @@
+<?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.
+-->
+
+<!-- $Id: pom.xml 650426 2008-04-22 09:22:38Z jdillon $ -->
+
+<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-2-r654638</version>
+    </parent>
+
+    <artifactId>gshell-maven-plugin</artifactId>
+    <name>GShell Maven Plugin</name>
+    <packaging>maven-plugin</packaging>
+
+    <description>
+        Provides build integration with GShell.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-core</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-model</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-project</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-container-default</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-component-annotations</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>descriptor</goal>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.4.1</version>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.4</version>
+                <configuration>
+                    <quiet>true</quiet>
+                    <links>
+                        <link>http://java.sun.com/j2ee/1.4/docs/api</link>
+                        <!--
+                        <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+                        -->
+                    </links>
+                    <tags>
+                        <tag>
+                            <name>goal</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>phase</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>execute</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>requiresDependencyResolution</name>
+                            <placement>Xt</placement>
+                        </tag>
+                        <tag>
+                            <name>parameter</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>required</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>readonly</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>component</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>plexus.component</name>
+                            <placement>Xf</placement>
+                        </tag>
+                        <tag>
+                            <name>plexus.requirement</name>
+                            <placement>Xf</placement>
+                        </tag>
+                    </tags>
+                </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>cobertura-maven-plugin</artifactId>
+                <version>2.2</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
+</project>

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+a28e9065e4126b1d4f95e6653feb00d9
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/1.0-alpha-2-r654638/gshell-maven-plugin-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+9de4302e4d0143f4081f7de5015ef98819b6b7ed
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-maven-plugin</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <latest>1.0-alpha-2-r654638</latest>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215444</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+bd236528f9d65099ee0c98c36455d122
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-maven-plugin/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+5a3ad4b31b52874a80c8dd0e996729303e9e3c88
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+7a34eae234c0b48367053888482651cf
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638-sources.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+a165108c2899edafa8815d2eba9ec59d5c7a92ca
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+18ab6a6ec7ecd533d362f6e02bae66c8
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+f80cc19954653baf897463f3f7955c803441dbd3
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,52 @@
+<?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: 637546 $ $Date: 2008-03-16 07:10:36 +0100 (Sun, 16 Mar 2008) $ -->
+
+<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-2-r654638</version>
+    </parent>
+
+    <artifactId>gshell-model</artifactId>
+    <name>GShell Model</name>
+
+    <description>
+		GShell XML models.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-common</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>com.thoughtworks.xstream</groupId>
+            <artifactId>xstream</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+cbd13848ab207f9a1e52ddd143477afb
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/1.0-alpha-2-r654638/gshell-model-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+c7e0b5d988493daa066576b84db2a0bdc91cf8c6
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-model</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215406</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+e37a4489042dd26999ff7a4a521bec74
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-model/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+33ae08af1f162b0bed29e0b12b2f829c19052028
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+c33a1d6ef8588c9761f0cce189ff49a4
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638-sources.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+9a5629eb95c086522aa7cd7ddac0f53ea8869576
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+1070dfd31a851e2fbad273be67f74938
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+3d486622ab444e5a04515aec3c8dd933e5e93897
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,116 @@
+<?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: 606423 $ $Date: 2007-12-22 09:50:41 +0100 (Sat, 22 Dec 2007) $ -->
+
+<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-2-r654638</version>
+    </parent>
+    
+    <artifactId>gshell-parser</artifactId>
+    <name>GShell Parser</name>
+    
+    <description>
+        Provides the command-line syntax parsing muck.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-component-annotations</artifactId>
+        </dependency>
+        
+        <!--
+        <dependency>
+            <groupId>org.antlr</groupId>
+            <artifactId>antlr-runtime</artifactId>
+        </dependency>
+        -->
+    </dependencies>
+
+    <build>
+        <plugins>
+            <!--
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>antlr3-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>antlr</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            -->
+            
+            <plugin>
+                <groupId>org.apache.geronimo.gshell</groupId>
+                <artifactId>javacc-maven-plugin</artifactId>
+                <version>${version}</version>
+                <executions>
+                    <execution>
+                        <id>jjtree</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>jjtree</goal>
+                        </goals>
+                        <configuration>
+                            <grammars>
+                                <directory>${project.basedir}/src/main/grammar</directory>
+                                <includes>
+                                    <include>*.jjt</include>
+                                </includes>
+                            </grammars>
+                        </configuration>
+                    </execution>
+
+                    <execution>
+                        <id>javacc</id>
+                        <phase>generate-sources</phase>
+                        <goals>
+                            <goal>javacc</goal>
+                        </goals>
+                        <configuration>
+                            <grammars>
+                                <directory>${project.build.directory}/generated-sources/jjtree</directory>
+                                <includes>
+                                    <include>*.jj</include>
+                                </includes>
+                            </grammars>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+ae58efd0240fcd452d1da2a261db3c87
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/1.0-alpha-2-r654638/gshell-parser-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+013f33726435f54a523e49ab04383538bc6164fa
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-parser</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215441</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+7221e1e64b18297c0437898e42a42c5a
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-parser/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+d25a7b7791db8555149ccc74eb6103d52e32e561
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+3dddfaa64c65950090f1c7c86b89e3cf
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638-sources.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+9646948083be3af0757ab085ff088bae2af808f1
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar?rev=654644&view=auto
==============================================================================
Binary file - no diff available.

Propchange: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+f0b86349c8b3af4d988e3f6a88e52d44
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.jar.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+950ccb67679eb79215b2dc8627596caa5a9e743a
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom Thu May  8 15:01:20 2008
@@ -0,0 +1,82 @@
+<?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: 641356 $ $Date: 2008-03-26 16:55:46 +0100 (Wed, 26 Mar 2008) $ -->
+
+<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-2-r654638</version>
+    </parent>
+
+    <artifactId>gshell-whisper</artifactId>
+    <name>GShell Whisper</name>
+    
+    <description>
+        Messaging framework muck and fluff.
+    </description>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-common</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-container-default</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-component-annotations</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-utils</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.mina</groupId>
+            <artifactId>mina-core</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.mina</groupId>
+            <artifactId>mina-filter-ssl</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>commons-vfs</groupId>
+            <artifactId>commons-vfs</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+10ae5beac481c624ef2a12c7d1154b9a
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/1.0-alpha-2-r654638/gshell-whisper-1.0-alpha-2-r654638.pom.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+5c1561d6b3e5b270afee4f9682f1eabbbb6fbcdb
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?><metadata>
+  <groupId>org.apache.geronimo.gshell</groupId>
+  <artifactId>gshell-whisper</artifactId>
+  <version>1.0-alpha-2-r654638</version>
+  <versioning>
+    <versions>
+      <version>1.0-alpha-2-r654638</version>
+    </versions>
+    <lastUpdated>20080508215447</lastUpdated>
+  </versioning>
+</metadata>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+7a9dfb2f751bf8bb934f5f786704bc6f
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell-whisper/maven-metadata.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+45a567bbb8707b6adf5675ecb5ed0b9dc9b8e0aa
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml Thu May  8 15:01:20 2008
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?><project name="GShell">
+  <body>
+    <menu name="Modules" ref="modules">
+      <item name="GShell Diet" href="gshell-diet/index.html" />
+      <item name="GShell Support" href="gshell-support/index.html" />
+      <item name="GShell Bootstrap" href="gshell-bootstrap/index.html" />
+      <item name="GShell Model" href="gshell-model/index.html" />
+      <item name="GShell Command API" href="gshell-command-api/index.html" />
+      <item name="JavaCC Maven Plugin" href="javacc-maven-plugin/index.html" />
+      <item name="GShell Parser" href="gshell-parser/index.html" />
+      <item name="GShell Core" href="gshell-core/index.html" />
+      <item name="GShell Maven Plugin" href="gshell-maven-plugin/index.html" />
+      <item name="GShell CLI" href="gshell-cli/index.html" />
+      <item name="GShell Whisper" href="gshell-whisper/index.html" />
+      <item name="GShell Commands" href="gshell-commands/index.html" />
+      <item name="GShell Remote" href="gshell-remote/index.html" />
+      <item name="GShell Embeddable" href="gshell-embeddable/index.html" />
+      <item name="GShell Assembly" href="gshell-assembly/index.html" />
+    </menu>
+    <menu ref="reports" />
+  </body>
+</project>
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.md5
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.md5?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.md5 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.md5 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+4e6f5b36c07dab7a6acddb9384d89bcd
\ No newline at end of file

Added: servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.sha1
URL: http://svn.apache.org/viewvc/servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.sha1?rev=654644&view=auto
==============================================================================
--- servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.sha1 (added)
+++ servicemix/m2-repo/org/apache/geronimo/gshell/gshell/1.0-alpha-2-r654638/gshell-1.0-alpha-2-r654638-site.xml.sha1 Thu May  8 15:01:20 2008
@@ -0,0 +1 @@
+108208b4f2ceea3af0e823613ccd3a1fadb0d501
\ No newline at end of file