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/11/27 07:47:19 UTC

svn commit: r721101 - in /geronimo/gshell/trunk: gshell-buildsupport/ gshell-commands/pom.xml gshell-local-repository/ gshell-local-repository/pom.xml pom.xml

Author: jdillon
Date: Wed Nov 26 22:47:19 2008
New Revision: 721101

URL: http://svn.apache.org/viewvc?rev=721101&view=rev
Log:
Add gshell-local-repository module to hold custom artifact releases
Drop gshell-buildsupport

Added:
    geronimo/gshell/trunk/gshell-local-repository/
    geronimo/gshell/trunk/gshell-local-repository/pom.xml   (with props)
Removed:
    geronimo/gshell/trunk/gshell-buildsupport/
Modified:
    geronimo/gshell/trunk/gshell-commands/pom.xml
    geronimo/gshell/trunk/pom.xml

Modified: geronimo/gshell/trunk/gshell-commands/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-commands/pom.xml?rev=721101&r1=721100&r2=721101&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-commands/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-commands/pom.xml Wed Nov 26 22:47:19 2008
@@ -65,9 +65,6 @@
         <module>gshell-vfs</module>
         <module>gshell-log4j</module>
         <module>gshell-ssh</module>
-	<!--
-        <module>gshell-geronimo</module>
-	-->
     </modules>
 
 </project>

Added: geronimo/gshell/trunk/gshell-local-repository/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-local-repository/pom.xml?rev=721101&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-local-repository/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-local-repository/pom.xml Wed Nov 26 22:47:19 2008
@@ -0,0 +1,59 @@
+<?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-local-repository</artifactId>
+    <name>GShell Local Repository</name>
+    
+    <description>
+        GShell Local Repository
+    </description>
+    
+    <repositories>
+        <repository>
+            <id>module-local</id>
+            <name>Local Repository</name>
+            <url>file://${project.basedir}/</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </repository>
+    </repositories>
+    
+    <dependencies>
+        <!-- TODO: -->
+    </dependencies>
+
+</project>

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

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

Propchange: geronimo/gshell/trunk/gshell-local-repository/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=721101&r1=721100&r2=721101&view=diff
==============================================================================
--- geronimo/gshell/trunk/pom.xml (original)
+++ geronimo/gshell/trunk/pom.xml Wed Nov 26 22:47:19 2008
@@ -386,7 +386,7 @@
     </dependencies>
 
     <modules>
-        <module>gshell-buildsupport</module>
+        <module>gshell-local-repository</module>
         <module>gshell-api</module>
         <module>gshell-support</module>
         <module>gshell-bootstrap</module>