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/12/14 16:16:51 UTC

svn commit: r726465 - in /geronimo/gshell/trunk: ./ gshell-maven-plugin/ gshell-maven-plugin/src/ gshell-maven-plugin/src/main/ gshell-maven-plugin/src/main/java/ gshell-maven-plugin/src/main/resources/ gshell-testsuite/

Author: jdillon
Date: Sun Dec 14 07:16:51 2008
New Revision: 726465

URL: http://svn.apache.org/viewvc?rev=726465&view=rev
Log:
(GSHELL-82) Bring the testsuite back (sorta, its empty right now)
(GSHELL-152) Start of the gshell-maven-plugin

Added:
    geronimo/gshell/trunk/gshell-maven-plugin/
    geronimo/gshell/trunk/gshell-maven-plugin/pom.xml   (with props)
    geronimo/gshell/trunk/gshell-maven-plugin/src/
    geronimo/gshell/trunk/gshell-maven-plugin/src/main/
    geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/
    geronimo/gshell/trunk/gshell-maven-plugin/src/main/resources/
    geronimo/gshell/trunk/gshell-testsuite/
    geronimo/gshell/trunk/gshell-testsuite/pom.xml   (with props)
Modified:
    geronimo/gshell/trunk/pom.xml

Added: geronimo/gshell/trunk/gshell-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-maven-plugin/pom.xml?rev=726465&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-maven-plugin/pom.xml Sun Dec 14 07:16:51 2008
@@ -0,0 +1,65 @@
+<?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-maven-plugin</artifactId>
+    <name>GShell Maven Plugin</name>
+    <packaging>maven-plugin</packaging>
+    
+    <description>
+        GShell Maven Plugin.
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-api</artifactId>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>descriptor</goal>
+                            <goal>helpmojo</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Propchange: geronimo/gshell/trunk/gshell-maven-plugin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

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

Propchange: geronimo/gshell/trunk/gshell-maven-plugin/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/gshell/trunk/gshell-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-testsuite/pom.xml?rev=726465&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-testsuite/pom.xml (added)
+++ geronimo/gshell/trunk/gshell-testsuite/pom.xml Sun Dec 14 07:16:51 2008
@@ -0,0 +1,41 @@
+<?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-testsuite</artifactId>
+    <name>GShell Testsuite</name>
+    <packaging>pom</packaging>
+    
+    <description>
+        GShell Testsuite.
+    </description>
+
+</project>

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

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

Propchange: geronimo/gshell/trunk/gshell-testsuite/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=726465&r1=726464&r2=726465&view=diff
==============================================================================
--- geronimo/gshell/trunk/pom.xml (original)
+++ geronimo/gshell/trunk/pom.xml Sun Dec 14 07:16:51 2008
@@ -412,6 +412,18 @@
                 <artifactId>gshell-wisdom-core</artifactId>
                 <version>1.0-alpha-2-SNAPSHOT</version>
             </dependency>
+            
+            <dependency>
+                <groupId>org.apache.geronimo.gshell</groupId>
+                <artifactId>gshell-maven-plugin</artifactId>
+                <version>1.0-alpha-2-SNAPSHOT</version>
+            </dependency>
+            
+            <dependency>
+                <groupId>org.apache.geronimo.gshell</groupId>
+                <artifactId>gshell-testsuite</artifactId>
+                <version>1.0-alpha-2-SNAPSHOT</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
@@ -432,7 +444,9 @@
         <module>gshell-wisdom</module>
         <module>gshell-cli</module>
         <module>gshell-commands</module>
+        <module>gshell-maven-plugin</module>
         <module>gshell-assembly</module>
+        <module>gshell-testsuite</module>
     </modules>
     
     <build>
@@ -443,15 +457,6 @@
                     <artifactId>javacc-maven-plugin</artifactId>
                     <version>2.5</version>
                 </plugin>
-
-                <!--
-                <plugin>
-                    <groupId>org.apache.felix</groupId>
-                    <artifactId>maven-bundle-plugin</artifactId>
-                    <version>1.4.3</version>
-                    <extensions>true</extensions>
-                </plugin>
-                -->
             </plugins>
         </pluginManagement>
     </build>