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/10/04 10:20:09 UTC

svn commit: r701610 - in /geronimo/gshell/trunk: ./ gshell-support/ gshell-support/gshell-vfs-meta/ gshell-support/gshell-vfs-meta/src/ gshell-support/gshell-vfs-meta/src/main/ gshell-support/gshell-vfs-meta/src/main/java/ gshell-support/gshell-vfs-met...

Author: jdillon
Date: Sat Oct  4 01:20:09 2008
New Revision: 701610

URL: http://svn.apache.org/viewvc?rev=701610&view=rev
Log:
Start of VFS meta filesystem support, which will be used as the backing for the plugin/command/whatever metadata filesystem

Added:
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/pom.xml   (with props)
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/main/
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/main/java/
    geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/src/main/resources/
Modified:
    geronimo/gshell/trunk/gshell-support/pom.xml
    geronimo/gshell/trunk/pom.xml

Added: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/pom.xml?rev=701610&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/pom.xml Sat Oct  4 01:20:09 2008
@@ -0,0 +1,47 @@
+<?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-vfs-meta</artifactId>
+    <name>GShell Support :: VFS Meta</name>
+
+    <description>
+        Meta VFS provider.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-vfs</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

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

Propchange: geronimo/gshell/trunk/gshell-support/gshell-vfs-meta/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=701610&r1=701609&r2=701610&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-support/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-support/pom.xml Sat Oct  4 01:20:09 2008
@@ -56,6 +56,7 @@
         <module>gshell-console</module>
         <module>gshell-vfs</module>
         <module>gshell-vfs-local</module>
+        <module>gshell-vfs-meta</module>
         <module>gshell-vfs-truezip</module>
         <module>gshell-security</module>
     </modules>

Modified: geronimo/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/pom.xml?rev=701610&r1=701609&r2=701610&view=diff
==============================================================================
--- geronimo/gshell/trunk/pom.xml (original)
+++ geronimo/gshell/trunk/pom.xml Sat Oct  4 01:20:09 2008
@@ -240,6 +240,12 @@
 
             <dependency>
                 <groupId>org.apache.geronimo.gshell.support</groupId>
+                <artifactId>gshell-vfs-meta</artifactId>
+                <version>1.0-alpha-2-SNAPSHOT</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.apache.geronimo.gshell.support</groupId>
                 <artifactId>gshell-vfs-truezip</artifactId>
                 <version>1.0-alpha-2-SNAPSHOT</version>
             </dependency>