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/03 12:54:30 UTC

svn commit: r662736 - in /geronimo/gshell/trunk: gshell-core/src/main/java/org/apache/geronimo/gshell/url/ gshell-support/ gshell-support/gshell-plexus/ gshell-support/gshell-url/ gshell-support/gshell-url/src/ gshell-support/gshell-url/src/main/ gshel...

Author: jdillon
Date: Tue Jun  3 03:54:29 2008
New Revision: 662736

URL: http://svn.apache.org/viewvc?rev=662736&view=rev
Log:
Move the url bits from gshell-core to gshell-url

Added:
    geronimo/gshell/trunk/gshell-support/gshell-url/
    geronimo/gshell/trunk/gshell-support/gshell-url/pom.xml   (with props)
    geronimo/gshell/trunk/gshell-support/gshell-url/src/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/org/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/org/apache/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/org/apache/geronimo/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/org/apache/geronimo/gshell/
    geronimo/gshell/trunk/gshell-support/gshell-url/src/main/java/org/apache/geronimo/gshell/url/
      - copied from r662702, geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/url/
Removed:
    geronimo/gshell/trunk/gshell-core/src/main/java/org/apache/geronimo/gshell/url/
Modified:
    geronimo/gshell/trunk/gshell-support/gshell-plexus/pom.xml
    geronimo/gshell/trunk/gshell-support/pom.xml

Modified: geronimo/gshell/trunk/gshell-support/gshell-plexus/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-plexus/pom.xml?rev=662736&r1=662735&r2=662736&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-support/gshell-plexus/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-support/gshell-plexus/pom.xml Tue Jun  3 03:54:29 2008
@@ -52,6 +52,11 @@
             <groupId>org.codehaus.plexus</groupId>
             <artifactId>plexus-utils</artifactId>
         </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.plexus</groupId>
+            <artifactId>plexus-component-annotations</artifactId>
+        </dependency>
     </dependencies>
 
 </project>
\ No newline at end of file

Added: geronimo/gshell/trunk/gshell-support/gshell-url/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-url/pom.xml?rev=662736&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-support/gshell-url/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-support/gshell-url/pom.xml Tue Jun  3 03:54:29 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$ $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.support</groupId>
+        <artifactId>gshell-support</artifactId>
+        <version>1.0-alpha-2-SNAPSHOT</version>
+    </parent>
+    
+    <artifactId>gshell-url</artifactId>
+    <name>GShell Support :: URL</name>
+    
+    <description>
+        Provides support for URL factories and handlers.
+    </description>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-plexus</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

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

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

Modified: geronimo/gshell/trunk/gshell-support/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/pom.xml?rev=662736&r1=662735&r2=662736&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-support/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-support/pom.xml Tue Jun  3 03:54:29 2008
@@ -49,6 +49,7 @@
         <module>gshell-prefs</module>
         <module>gshell-plexus</module>
         <module>gshell-expr</module>
+        <module>gshell-url</module>
     </modules>
 
 </project>
\ No newline at end of file