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/03 17:27:58 UTC

svn commit: r701412 - in /geronimo/gshell/trunk/gshell-support: ./ gshell-vfs-truezip/ gshell-vfs-truezip/src/ gshell-vfs-truezip/src/main/ gshell-vfs-truezip/src/main/java/ gshell-vfs-truezip/src/main/resources/ gshell-vfs-truezip/src/test/ gshell-vfs...

Author: jdillon
Date: Fri Oct  3 08:27:58 2008
New Revision: 701412

URL: http://svn.apache.org/viewvc?rev=701412&view=rev
Log:
Start of VFS TrueZip provider support, this isn't yet in VFS 1.0, so add the provider here so we can edit zip/tar/tgz files

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

Added: geronimo/gshell/trunk/gshell-support/gshell-vfs-truezip/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-support/gshell-vfs-truezip/pom.xml?rev=701412&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-support/gshell-vfs-truezip/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-support/gshell-vfs-truezip/pom.xml Fri Oct  3 08:27:58 2008
@@ -0,0 +1,53 @@
+<?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-truezip</artifactId>
+    <name>GShell Support :: VFS TrueZip</name>
+
+    <description>
+        VFS TrueZip provider.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell.support</groupId>
+            <artifactId>gshell-vfs</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>de.schlichtherle.io</groupId>
+            <artifactId>truezip</artifactId>
+            <version>6.6</version>
+        </dependency>
+    </dependencies>
+
+</project>
\ No newline at end of file

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

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

Propchange: geronimo/gshell/trunk/gshell-support/gshell-vfs-truezip/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=701412&r1=701411&r2=701412&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-support/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-support/pom.xml Fri Oct  3 08:27:58 2008
@@ -55,6 +55,7 @@
         <module>gshell-interpolation</module>
         <module>gshell-console</module>
         <module>gshell-vfs</module>
+        <module>gshell-vfs-truezip</module>
         <module>gshell-security</module>
     </modules>