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

svn commit: r667025 - in /geronimo/gshell/trunk: ./ gshell-wisdom/ gshell-wisdom/src/ gshell-wisdom/src/main/ gshell-wisdom/src/main/java/ gshell-wisdom/src/main/resources/ gshell-wisdom/src/main/resources/META-INF/ gshell-wisdom/src/main/resources/MET...

Author: jdillon
Date: Thu Jun 12 03:10:48 2008
New Revision: 667025

URL: http://svn.apache.org/viewvc?rev=667025&view=rev
Log:
Add module for spring integration

Added:
    geronimo/gshell/trunk/gshell-wisdom/
    geronimo/gshell/trunk/gshell-wisdom/pom.xml   (with props)
    geronimo/gshell/trunk/gshell-wisdom/src/
    geronimo/gshell/trunk/gshell-wisdom/src/main/
    geronimo/gshell/trunk/gshell-wisdom/src/main/java/
    geronimo/gshell/trunk/gshell-wisdom/src/main/resources/
    geronimo/gshell/trunk/gshell-wisdom/src/main/resources/META-INF/
    geronimo/gshell/trunk/gshell-wisdom/src/main/resources/META-INF/gshell/
    geronimo/gshell/trunk/gshell-wisdom/src/main/resources/META-INF/spring/
Modified:
    geronimo/gshell/trunk/pom.xml

Added: geronimo/gshell/trunk/gshell-wisdom/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-wisdom/pom.xml?rev=667025&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-wisdom/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-wisdom/pom.xml Thu Jun 12 03:10:48 2008
@@ -0,0 +1,96 @@
+<?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-2-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>gshell-wisdom</artifactId>
+    <name>GShell Wisdom</name>
+
+    <description>
+        Provides the glue for using GShell with Spring.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-clp</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-console</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-chronos</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-api</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-parser</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-plugin</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-layout</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-interpolation</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>commons-jexl</groupId>
+            <artifactId>commons-jexl</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jcl104-over-slf4j</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <!-- TODO: Add spring dependcencies -->
+        
+    </dependencies>
+
+</project>

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

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

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

Modified: geronimo/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/pom.xml?rev=667025&r1=667024&r2=667025&view=diff
==============================================================================
--- geronimo/gshell/trunk/pom.xml (original)
+++ geronimo/gshell/trunk/pom.xml Thu Jun 12 03:10:48 2008
@@ -468,7 +468,7 @@
             
             <dependency>
                 <groupId>org.apache.geronimo.gshell</groupId>
-                <artifactId>gshell-diet-log4j</artifactId>
+                <artifactId>gshell-wisdom</artifactId>
                 <version>1.0-alpha-2-SNAPSHOT</version>
             </dependency>
         </dependencies>
@@ -498,6 +498,7 @@
         <module>gshell-parser</module>
         <module>gshell-layout</module>
         <module>gshell-rapture</module>
+        <module>gshell-wisdom</module>
         <module>gshell-cli</module>
         <module>gshell-commands</module>
         <module>gshell-remote</module>