Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 75264 invoked from network); 16 Oct 2008 22:51:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Oct 2008 22:51:15 -0000 Received: (qmail 16025 invoked by uid 500); 16 Oct 2008 22:51:17 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 15889 invoked by uid 500); 16 Oct 2008 22:51:17 -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 15880 invoked by uid 99); 16 Oct 2008 22:51:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Oct 2008 15:51:16 -0700 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; Thu, 16 Oct 2008 22:50:16 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 463B3238898E; Thu, 16 Oct 2008 15:50:24 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r705389 [2/2] - in /geronimo/devtools/eclipse-plugin/trunk: plugins/org.apache.geronimo.runtime.v20/ plugins/org.apache.geronimo.runtime.v21/ plugins/org.apache.geronimo.runtime.v21/META-INF/ plugins/org.apache.geronimo.runtime.v22/ plugins... Date: Thu, 16 Oct 2008 22:50:23 -0000 To: scm@geronimo.apache.org From: mcconne@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081016225024.463B3238898E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java?rev=705389&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java Thu Oct 16 15:50:21 2008 @@ -0,0 +1,33 @@ +/* + * 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 sampleear; + +import javax.ejb.Stateless; + +/** + * MyStatelessSessionBean + * + * @version $Rev$ $Date$ + */ +@Stateless +public class MyStatelessSessionBean implements RemoteBusinessInterface { + + public String sayHello(String name) { + return getClass().getName() + " says hello to " + name + "."; + } +} Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/MyStatelessSessionBean.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java?rev=705389&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java (added) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java Thu Oct 16 15:50:21 2008 @@ -0,0 +1,30 @@ +/* + * 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 sampleear; + +import javax.ejb.Remote; + +/** + * RemoteBusinessInterface + * + * @version $Rev$ $Date$ + */ +@Remote +public interface RemoteBusinessInterface { + public String sayHello(String name); +} Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/RemoteBusinessInterface.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp?rev=705389&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp (added) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp Thu Oct 16 15:50:21 2008 @@ -0,0 +1,32 @@ + + + + +<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> + + + + + 5-minute Tutorial on Enterprise Application Development with Eclipse and Geronimo + + +
+ +
+ + Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/src/main/resources/ui-tutorial/index.jsp ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml?rev=705389&view=auto ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml (added) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml Thu Oct 16 15:50:21 2008 @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/org.apache.geronimo.testsuite.v22/test.xml ------------------------------------------------------------------------------ svn:mime-type = text/xml Modified: geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/pom.xml URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/pom.xml?rev=705389&r1=705388&r2=705389&view=diff ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/pom.xml (original) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/plugins/pom.xml Thu Oct 16 15:50:21 2008 @@ -110,6 +110,7 @@ org.apache.geronimo.testsuite.common + org.apache.geronimo.testsuite.v22 org.apache.geronimo.testsuite.v21 org.apache.geronimo.testsuite.v20 Modified: geronimo/devtools/eclipse-plugin/trunk/testsuite/pom.xml URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/pom.xml?rev=705389&r1=705388&r2=705389&view=diff ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/pom.xml (original) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/pom.xml Thu Oct 16 15:50:21 2008 @@ -38,16 +38,87 @@ Geronimo Eclipse Plugin Integration Testsuite + + 2.2-SNAPSHOT + 2.1.4-SNAPSHOT + 2.0.2 + + + + org.apache.geronimo.assemblies + geronimo-tomcat6-javaee5 + ${geronimoVersion_1} + zip + bin + test + + + + com.sun.xml.ws + jaxws-tools + + + com.sun.xml.ws + jaxws-rt + + + org.apache.tomcat + catalina + + + org.apache.tomcat + jasper + + + org.apache.pluto + pluto-portal-driver + + + org.apache.pluto + pluto-portal-driver-impl + + + org.apache.pluto + pluto-container + + + org.apache.pluto + pluto-taglib + + + org.apache.pluto + pluto-descriptor-api + + + org.apache.pluto + pluto-descriptor-impl + + + juddi + juddi + + + + + org.apache.geronimo.assemblies geronimo-tomcat6-javaee5 - 2.1.3 + ${geronimoVersion_2} zip bin test @@ -112,7 +183,7 @@ org.apache.geronimo.assemblies geronimo-tomcat6-jee5 - 2.0.2 + ${geronimoVersion_3} zip bin test @@ -137,6 +208,7 @@ launcher/eclipse launcher/results + launcher/server_v2.2 launcher/server_v2.1 launcher/server_v2.0 launcher/workspace Modified: geronimo/devtools/eclipse-plugin/trunk/testsuite/server/pom.xml URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/testsuite/server/pom.xml?rev=705389&r1=705388&r2=705389&view=diff ============================================================================== --- geronimo/devtools/eclipse-plugin/trunk/testsuite/server/pom.xml (original) +++ geronimo/devtools/eclipse-plugin/trunk/testsuite/server/pom.xml Thu Oct 16 15:50:21 2008 @@ -47,34 +47,50 @@ - + - - - + + - - + + - - - + + + + + + + + + + + + +