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:50:03 UTC

svn commit: r726480 - in /geronimo/gshell/trunk/gshell-maven-plugin: ./ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/geronimo/ src/main/java/org/apache/geronimo/gshell/ src/main/java/org/apache/geronimo/gshell/maven/

Author: jdillon
Date: Sun Dec 14 07:50:03 2008
New Revision: 726480

URL: http://svn.apache.org/viewvc?rev=726480&view=rev
Log:
Some basic skel bits for the plugin

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

Modified: geronimo/gshell/trunk/gshell-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-maven-plugin/pom.xml?rev=726480&r1=726479&r2=726480&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-maven-plugin/pom.xml Sun Dec 14 07:50:03 2008
@@ -43,6 +43,25 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
         </dependency>
+
+        <dependency>
+            <groupId>org.codehaus.groovy.maven.support</groupId>
+            <artifactId>slf4j-gossip</artifactId>
+            <version>1.0-rc-3</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-project</artifactId>
+            <version>2.0.9</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>2.0.9</version>
+        </dependency>
     </dependencies>
     
     <build>
@@ -62,4 +81,14 @@
         </plugins>
     </build>
 
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.4.1</version>
+            </plugin>
+        </plugins>
+    </reporting>
+
 </project>

Added: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java?rev=726480&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java (added)
+++ geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java Sun Dec 14 07:50:03 2008
@@ -0,0 +1,40 @@
+/*
+ * 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.
+ */
+
+package org.apache.geronimo.gshell.maven;
+
+import org.apache.maven.plugin.AbstractMojo;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.apache.maven.plugin.MojoFailureException;
+
+/**
+ * ???
+ *
+ * @goal execute
+ * @since 1.0-alpha-2
+ *
+ * @version $Rev$ $Date$
+ */
+public class ExecuteMojo
+    extends AbstractMojo
+{
+    public void execute() throws MojoExecutionException, MojoFailureException {
+        // TODO:
+    }
+}
\ No newline at end of file

Propchange: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain