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 17:40:53 UTC

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

Author: jdillon
Date: Sun Dec 14 08:40:52 2008
New Revision: 726493

URL: http://svn.apache.org/viewvc?rev=726493&view=rev
Log:
Some more empty classes for the gshell-m-p

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

Added: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ConsoleMojo.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ConsoleMojo.java?rev=726493&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ConsoleMojo.java (added)
+++ geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ConsoleMojo.java Sun Dec 14 08:40:52 2008
@@ -0,0 +1,42 @@
+/*
+ * 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;
+
+/**
+ * Launch an interactive GShell console.
+ *
+ * @goal console
+ * @since 1.0-alpha-2
+ *
+ * @version $Rev$ $Date$
+ */
+public class ConsoleMojo
+    extends AbstractMojo
+{
+    public void execute() throws MojoExecutionException, MojoFailureException {
+        // TODO:
+
+        throw new Error("Not implemented");
+    }
+}
\ No newline at end of file

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

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

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

Modified: 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=726493&r1=726492&r2=726493&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java (original)
+++ geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ExecuteMojo.java Sun Dec 14 08:40:52 2008
@@ -24,7 +24,7 @@
 import org.apache.maven.plugin.MojoFailureException;
 
 /**
- * ???
+ * Execute GShell commands non-interactivly.
  *
  * @goal execute
  * @since 1.0-alpha-2
@@ -36,5 +36,7 @@
 {
     public void execute() throws MojoExecutionException, MojoFailureException {
         // TODO:
+
+        throw new Error("Not implemented");
     }
 }
\ No newline at end of file

Added: geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/InstallMojo.java
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/InstallMojo.java?rev=726493&view=auto
==============================================================================
--- geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/InstallMojo.java (added)
+++ geronimo/gshell/trunk/gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/InstallMojo.java Sun Dec 14 08:40:52 2008
@@ -0,0 +1,42 @@
+/*
+ * 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;
+
+/**
+ * Install a GShell assembly.
+ *
+ * @goal install
+ * @since 1.0-alpha-2
+ *
+ * @version $Rev$ $Date$
+ */
+public class InstallMojo
+    extends AbstractMojo
+{
+    public void execute() throws MojoExecutionException, MojoFailureException {
+        // TODO:
+
+        throw new Error("Not implemented");
+    }
+}
\ No newline at end of file

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

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

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

Modified: geronimo/gshell/trunk/gshell-testsuite/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-testsuite/pom.xml?rev=726493&r1=726492&r2=726493&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-testsuite/pom.xml (original)
+++ geronimo/gshell/trunk/gshell-testsuite/pom.xml Sun Dec 14 08:40:52 2008
@@ -38,4 +38,12 @@
         GShell Testsuite.
     </description>
 
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.gshell</groupId>
+            <artifactId>gshell-maven-plugin</artifactId>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+
 </project>