Return-Path: Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: (qmail 1045 invoked from network); 23 Jul 2010 01:28:26 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 23 Jul 2010 01:28:26 -0000 Received: (qmail 47747 invoked by uid 500); 23 Jul 2010 01:28:26 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 47634 invoked by uid 500); 23 Jul 2010 01:28:25 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 47627 invoked by uid 99); 23 Jul 2010 01:28:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 23 Jul 2010 01:28:25 +0000 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; Fri, 23 Jul 2010 01:28:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 94DEF2388A2C; Fri, 23 Jul 2010 01:27:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r966926 - in /cxf/branches/servlet3jetty7/systests/container-integration: ./ webapp/ webapp/src/ webapp/src/main/ webapp/src/main/java/ webapp/src/main/java/demo/ webapp/src/main/java/demo/spring/client/ webapp/src/main/java/demo/spring/ser... Date: Fri, 23 Jul 2010 01:27:31 -0000 To: commits@cxf.apache.org From: bimargulies@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100723012731.94DEF2388A2C@eris.apache.org> Author: bimargulies Date: Fri Jul 23 01:27:30 2010 New Revision: 966926 URL: http://svn.apache.org/viewvc?rev=966926&view=rev Log: start to set up a container integration test Added: cxf/branches/servlet3jetty7/systests/container-integration/ cxf/branches/servlet3jetty7/systests/container-integration/pom.xml (with props) cxf/branches/servlet3jetty7/systests/container-integration/webapp/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml (with props) cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/java/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/java/demo/ - copied from r966899, cxf/branches/servlet3jetty7/distribution/src/main/release/samples/java_first_spring_support/src/demo/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/resources/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml (with props) cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml (with props) Removed: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/java/demo/spring/client/ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/java/demo/spring/servlet/ Added: cxf/branches/servlet3jetty7/systests/container-integration/pom.xml URL: http://svn.apache.org/viewvc/cxf/branches/servlet3jetty7/systests/container-integration/pom.xml?rev=966926&view=auto ============================================================================== --- cxf/branches/servlet3jetty7/systests/container-integration/pom.xml (added) +++ cxf/branches/servlet3jetty7/systests/container-integration/pom.xml Fri Jul 23 01:27:30 2010 @@ -0,0 +1,37 @@ + + + + + cxf-parent + org.apache.cxf + 2.3.0-SNAPSHOT + ../../parent/pom.xml + + 4.0.0 + org.apache.cxf.systests + cxf-systests-container-integration + Apache CXF Container Integration System Tests + 2.3.0-SNAPSHOT + pom + http://cxf.apache.org + + webapp + + Propchange: cxf/branches/servlet3jetty7/systests/container-integration/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/servlet3jetty7/systests/container-integration/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml URL: http://svn.apache.org/viewvc/cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml?rev=966926&view=auto ============================================================================== --- cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml (added) +++ cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml Fri Jul 23 01:27:30 2010 @@ -0,0 +1,15 @@ + + + 4.0.0 + + org.apache.cxf.systests + cxf-systests-container-integration + 2.3.0-SNAPSHOT + ../pom.xml + + org.apache.cxf.systests + cxf-systests-ci-webapp + Apache CXF Container Integration Test Webapp + 2.3.0-SNAPSHOT + war + \ No newline at end of file Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml URL: http://svn.apache.org/viewvc/cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml?rev=966926&view=auto ============================================================================== --- cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml (added) +++ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml Fri Jul 23 01:27:30 2010 @@ -0,0 +1,38 @@ + + + + + + + + + + + + + Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/beans.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml?rev=966926&view=auto ============================================================================== --- cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml (added) +++ cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml Fri Jul 23 01:27:30 2010 @@ -0,0 +1,52 @@ + + + + + + + + + contextConfigLocation + WEB-INF/beans.xml + + + + + org.springframework.web.context.ContextLoaderListener + + + + + CXFServlet + CXF Servlet + + org.apache.cxf.transport.servlet.CXFServlet + + 1 + + + + CXFServlet + /* + + + \ No newline at end of file Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: cxf/branches/servlet3jetty7/systests/container-integration/webapp/src/main/webapp/WEB-INF/web.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain