Return-Path: X-Original-To: apmail-openwebbeans-commits-archive@www.apache.org Delivered-To: apmail-openwebbeans-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7C1891174B for ; Sat, 31 May 2014 20:23:02 +0000 (UTC) Received: (qmail 43458 invoked by uid 500); 31 May 2014 20:23:02 -0000 Delivered-To: apmail-openwebbeans-commits-archive@openwebbeans.apache.org Received: (qmail 43437 invoked by uid 500); 31 May 2014 20:23:02 -0000 Mailing-List: contact commits-help@openwebbeans.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@openwebbeans.apache.org Delivered-To: mailing list commits@openwebbeans.apache.org Received: (qmail 43429 invoked by uid 99); 31 May 2014 20:23:02 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 May 2014 20:23:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Sat, 31 May 2014 20:23:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BACD1238890B; Sat, 31 May 2014 20:22:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1598920 - in /openwebbeans/branches/owb_1.2.x/samples/guess: pom.xml src/main/resources/META-INF/openwebbeans/ src/main/webapp/WEB-INF/faces-config.xml src/main/webapp/WEB-INF/web.xml Date: Sat, 31 May 2014 20:22:40 -0000 To: commits@openwebbeans.apache.org From: struberg@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140531202240.BACD1238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: struberg Date: Sat May 31 20:22:39 2014 New Revision: 1598920 URL: http://svn.apache.org/r1598920 Log: move guess sample to JSF-2.2 Removed: openwebbeans/branches/owb_1.2.x/samples/guess/src/main/resources/META-INF/openwebbeans/ Modified: openwebbeans/branches/owb_1.2.x/samples/guess/pom.xml openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/faces-config.xml openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/web.xml Modified: openwebbeans/branches/owb_1.2.x/samples/guess/pom.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/owb_1.2.x/samples/guess/pom.xml?rev=1598920&r1=1598919&r2=1598920&view=diff ============================================================================== --- openwebbeans/branches/owb_1.2.x/samples/guess/pom.xml (original) +++ openwebbeans/branches/owb_1.2.x/samples/guess/pom.xml Sat May 31 20:22:39 2014 @@ -40,50 +40,25 @@ under the License. guess - org.mortbay.jetty - maven-jetty-plugin - 6.1.18 - - 10 - + org.apache.tomcat.maven + tomcat7-maven-plugin - - - com.sun.facelets - jsf-facelets - 1.1.14 - - - - - org.apache.myfaces.core - myfaces-api - 1.2.8 - - org.apache.openwebbeans - openwebbeans-jsf12 - ${project.version} - - - - - org.apache.openwebbeans - openwebbeans-el10 + openwebbeans-jsf ${project.version} org.apache.geronimo.specs - geronimo-servlet_2.5_spec + geronimo-servlet_3.0_spec provided @@ -127,8 +102,13 @@ under the License. org.apache.myfaces.core + myfaces-api + ${myfaces2.version} + + + org.apache.myfaces.core myfaces-impl - 1.2.8 + ${myfaces2.version} Modified: openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/faces-config.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/faces-config.xml?rev=1598920&r1=1598919&r2=1598920&view=diff ============================================================================== --- openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/faces-config.xml (original) +++ openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/faces-config.xml Sat May 31 20:22:39 2014 @@ -19,38 +19,35 @@ under the License. --> + xmlns:xi="http://www.w3.org/2001/XInclude" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"> + - - /home.xhtml - - login - /login.xhtml - + /home.xhtml + + login + /login.xhtml + - - - /login.xhtml - - loginSuccess - /home.xhtml - + + + /login.xhtml + + loginSuccess + /home.xhtml + - - /conversation.xhtml - - toRedirect - /redirect.jsf?book=alis - - + + /conversation.xhtml + + toRedirect + /redirect.jsf?book=alis + + - - - com.sun.facelets.FaceletViewHandler - - + Modified: openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/web.xml?rev=1598920&r1=1598919&r2=1598920&view=diff ============================================================================== --- openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/web.xml (original) +++ openwebbeans/branches/owb_1.2.x/samples/guess/src/main/webapp/WEB-INF/web.xml Sat May 31 20:22:39 2014 @@ -18,29 +18,29 @@ specific language governing permissions under the License. --> - guess - - - index.html - - - - org.apache.webbeans.servlet.WebBeansConfigurationListener - - - - Faces Servlet - javax.faces.webapp.FacesServlet - 1 - - - Faces Servlet - *.jsf - - - - javax.faces.DEFAULT_SUFFIX - .xhtml - - + guess + + + index.html + + + + org.apache.webbeans.servlet.WebBeansConfigurationListener + + + + Faces Servlet + javax.faces.webapp.FacesServlet + 1 + + + Faces Servlet + *.jsf + + + + javax.faces.DEFAULT_SUFFIX + .xhtml + + \ No newline at end of file