Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 29889 invoked from network); 14 Dec 2008 16:41:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 14 Dec 2008 16:41:14 -0000 Received: (qmail 34328 invoked by uid 500); 14 Dec 2008 16:41:26 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 34284 invoked by uid 500); 14 Dec 2008 16:41:26 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 34275 invoked by uid 99); 14 Dec 2008 16:41:26 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Dec 2008 08:41:26 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 14 Dec 2008 16:41:13 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4B0CD238889E; Sun, 14 Dec 2008 08:40:53 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r726493 - in /geronimo/gshell/trunk: gshell-maven-plugin/src/main/java/org/apache/geronimo/gshell/maven/ gshell-testsuite/ Date: Sun, 14 Dec 2008 16:40:53 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081214164053.4B0CD238889E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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. + + + org.apache.geronimo.gshell + gshell-maven-plugin + provided + + +