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 E254C1012B for ; Wed, 26 Aug 2015 13:34:39 +0000 (UTC) Received: (qmail 41624 invoked by uid 500); 26 Aug 2015 13:34:17 -0000 Delivered-To: apmail-openwebbeans-commits-archive@openwebbeans.apache.org Received: (qmail 41598 invoked by uid 500); 26 Aug 2015 13:34:17 -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 41587 invoked by uid 99); 26 Aug 2015 13:34:17 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Aug 2015 13:34:17 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id A891BAC0479 for ; Wed, 26 Aug 2015 13:34:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1697929 - in /openwebbeans/branches/cdi-2.0/samples/conversation-sample: pom.xml src/main/webapp/WEB-INF/faces-config.xml src/main/webapp/WEB-INF/web.xml Date: Wed, 26 Aug 2015 13:34:17 -0000 To: commits@openwebbeans.apache.org From: rsandtner@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150826133417.A891BAC0479@hades.apache.org> Author: rsandtner Date: Wed Aug 26 13:34:17 2015 New Revision: 1697929 URL: http://svn.apache.org/r1697929 Log: OWB-1088 fixed conversation-sample replaced tomcat6 with tomcat7 Modified: openwebbeans/branches/cdi-2.0/samples/conversation-sample/pom.xml openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/faces-config.xml openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/web.xml Modified: openwebbeans/branches/cdi-2.0/samples/conversation-sample/pom.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/cdi-2.0/samples/conversation-sample/pom.xml?rev=1697929&r1=1697928&r2=1697929&view=diff ============================================================================== --- openwebbeans/branches/cdi-2.0/samples/conversation-sample/pom.xml (original) +++ openwebbeans/branches/cdi-2.0/samples/conversation-sample/pom.xml Wed Aug 26 13:34:17 2015 @@ -17,12 +17,14 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> - + + 4.0.0 - Sample JSF2 Application + - samples org.apache.openwebbeans + samples 2.0.0-alpha-1-SNAPSHOT ../pom.xml @@ -30,14 +32,34 @@ under the License. org.apache.openwebbeans.samples conversation-sample war - JSF Conversation Sample + + Sample JSF2 Conversation + Sample JSF2 Application true + 7.0.61 + + + org.apache.geronimo.specs + geronimo-atinject_1.0_spec + + + + org.apache.geronimo.specs + geronimo-annotation_1.2_spec + + + + + org.apache.geronimo.specs + geronimo-jcdi_2.0_spec + + org.apache.openwebbeans @@ -53,14 +75,7 @@ under the License. org.apache.openwebbeans - openwebbeans-jsf12 - ${project.version} - - - - - org.apache.openwebbeans - openwebbeans-el10 + openwebbeans-jsf ${project.version} @@ -69,12 +84,6 @@ under the License. org.apache.openwebbeans openwebbeans-web ${project.version} - - - org.apache.openwebbeans - openwebbeans-el22 - - @@ -89,31 +98,7 @@ under the License. org.apache.myfaces.core myfaces-impl ${myfaces.version} - - - - - com.sun.facelets - jsf-facelets - 1.1.14 - - - - - org.apache.geronimo.specs - geronimo-jcdi_2.0_spec - - - - - org.apache.geronimo.specs - geronimo-atinject_1.0_spec - - - - - org.apache.openwebbeans - openwebbeans-spi + runtime @@ -123,7 +108,7 @@ under the License. org.apache.tomcat.maven - tomcat6-maven-plugin + tomcat7-maven-plugin Modified: openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/faces-config.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/faces-config.xml?rev=1697929&r1=1697928&r2=1697929&view=diff ============================================================================== --- openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/faces-config.xml (original) +++ openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/faces-config.xml Wed Aug 26 13:34:17 2015 @@ -19,9 +19,7 @@ under the License. --> + 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"> /buy.xhtml @@ -31,10 +29,5 @@ under the License. - - - com.sun.facelets.FaceletViewHandler - - Modified: openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/web.xml?rev=1697929&r1=1697928&r2=1697929&view=diff ============================================================================== --- openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/web.xml (original) +++ openwebbeans/branches/cdi-2.0/samples/conversation-sample/src/main/webapp/WEB-INF/web.xml Wed Aug 26 13:34:17 2015 @@ -25,8 +25,7 @@ - - org.apache.webbeans.servlet.WebBeansConfigurationListener + org.apache.webbeans.servlet.WebBeansConfigurationListener