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 2007/05/05 00:59:15 UTC

svn commit: r535404 - in /geronimo/sandbox/gshell/trunk: pom.xml repository/ repository/pom.xml

Author: jdillon
Date: Fri May  4 15:59:14 2007
New Revision: 535404

URL: http://svn.apache.org/viewvc?view=rev&rev=535404
Log:
Add local repo

Added:
    geronimo/sandbox/gshell/trunk/repository/
    geronimo/sandbox/gshell/trunk/repository/pom.xml   (with props)
Modified:
    geronimo/sandbox/gshell/trunk/pom.xml

Modified: geronimo/sandbox/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/pom.xml?view=diff&rev=535404&r1=535403&r2=535404
==============================================================================
--- geronimo/sandbox/gshell/trunk/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/pom.xml Fri May  4 15:59:14 2007
@@ -306,6 +306,7 @@
     </build>
     
     <modules>
+        <module>repository</module>
         <module>gshell-api</module>
         <module>gshell-core</module>
         <module>gshell-cli</module>

Added: geronimo/sandbox/gshell/trunk/repository/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/repository/pom.xml?view=auto&rev=535404
==============================================================================
--- geronimo/sandbox/gshell/trunk/repository/pom.xml (added)
+++ geronimo/sandbox/gshell/trunk/repository/pom.xml Fri May  4 15:59:14 2007
@@ -0,0 +1,119 @@
+<?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.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>repository</artifactId>
+    <name>GShell Local Repository</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>nvt4j</groupId>
+            <artifactId>nvt4j</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>sshtools</groupId>
+            <artifactId>j2ssh-core</artifactId>
+            <version>0.2.7</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>sshtools</groupId>
+            <artifactId>j2ssh-common</artifactId>
+            <version>0.2.7</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>sshtools</groupId>
+            <artifactId>j2ssh-daemon</artifactId>
+            <version>0.2.7</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>sshtools</groupId>
+            <artifactId>j2ssh-ant</artifactId>
+            <version>0.2.7</version>
+        </dependency>
+    </dependencies>
+
+    <repositories>
+        <repository>
+            <id>module-local</id>
+            <name>Local Repository</name>
+            <url>file://${pom.basedir}/</url>
+            <layout>default</layout>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+        </repository>
+    </repositories>
+
+    <build>
+        <plugins>
+            <!--
+            HACK: No legal files needed here... so don't fail the build if they are missing
+            -->
+            <plugin>
+                <groupId>org.apache.geronimo.genesis.plugins</groupId>
+                <artifactId>tools-maven-plugin</artifactId>
+
+                <executions>
+                    <execution>
+                        <id>install-legal-files</id>
+                        <phase>generate-resources</phase>
+                        <goals>
+                            <goal>copy-legal-files</goal>
+                        </goals>
+                        <configuration>
+                            <strict>false</strict>
+                        </configuration>
+                    </execution>
+
+                    <execution>
+                        <id>verify-legal-files</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>verify-legal-files</goal>
+                        </goals>
+                        <configuration>
+                            <strict>false</strict>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

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

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

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