Author: bimargulies
Date: Fri Jul 23 01:47:05 2010
New Revision: 966932
URL: http://svn.apache.org/viewvc?rev=966932&view=rev
Log:
more integration test framework
Added:
cxf/branches/servlet3jetty7/systests/container-integration/jetty6/
cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
(with props)
Modified:
cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml
Added: cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
URL:
http://svn.apache.org/viewvc/cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml?rev=966932&view=auto
==============================================================================
--- cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
(added)
+++ cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
Fri Jul 23 01:47:05 2010
@@ -0,0 +1,108 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.cxf.systests</groupId>
+ <artifactId>cxf-systests-container-integration</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <groupId>org.apache.cxf.systests</groupId>
+ <artifactId>cxf-systests-ci-jetty6</artifactId>
+ <name>Apache CXF Container Integration Test Jetty6</name>
+ <version>2.3.0-SNAPSHOT</version>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <!-- disable surefire, all tests are failsafe -->
+ <excludes>
+ <exclude>**/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-war</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.cxf.systests</groupId>
+
<artifactId>cxf-systests-ci-webapp</artifactId>
+ <version>${project.version}</version>
+ <type>war</type>
+ <overWrite>true</overWrite>
+
<outputDirectory>${project.build.directory}</outputDirectory>
+ <destFileName>hello.war</destFileName>
+ </artifactItem>
+ </artifactItems>
+
<outputDirectory>${project.build.directory}/wars</outputDirectory>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <version>2.5</version>
+ <executions>
+ <execution>
+ <id>integration-test</id>
+ <goals>
+ <goal>integration-test</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>verify</id>
+ <goals>
+ <goal>verify</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>maven-jetty-plugin</artifactId>
+ <version>6.1.24</version>
+ <configuration>
+ <scanIntervalSeconds>10</scanIntervalSeconds>
+ <stopPort>8005</stopPort>
+ <stopKey>STOP</stopKey>
+ <contextPath>/</contextPath>
+ </configuration>
+ <executions>
+ <execution>
+ <id>start-jetty</id>
+ <phase>pre-integration-test</phase>
+ <goals>
+ <goal>run-war</goal>
+ </goals>
+ <configuration>
+
<webApp>${project.build.directory}/hello.war</webApp>
+ <scanIntervalSeconds>0</scanIntervalSeconds>
+ <daemon>true</daemon>
+ </configuration>
+ </execution>
+ <execution>
+ <id>stop-jetty</id>
+ <phase>post-integration-test</phase>
+ <goals>
+ <goal>stop</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Propchange:
cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
cxf/branches/servlet3jetty7/systests/container-integration/jetty6/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified:
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=966932&r1=966931&r2=966932&view=diff
==============================================================================
--- cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml
(original)
+++ cxf/branches/servlet3jetty7/systests/container-integration/webapp/pom.xml
Fri Jul 23 01:47:05 2010
@@ -2,14 +2,34 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.apache.cxf.systests</groupId>
- <artifactId>cxf-systests-container-integration</artifactId>
- <version>2.3.0-SNAPSHOT</version>
- <relativePath>../pom.xml</relativePath>
+ <groupId>org.apache.cxf.systests</groupId>
+ <artifactId>cxf-systests-container-integration</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.apache.cxf.systests</groupId>
<artifactId>cxf-systests-ci-webapp</artifactId>
<name>Apache CXF Container Integration Test Webapp</name>
<version>2.3.0-SNAPSHOT</version>
<packaging>war</packaging>
-</project>
\ No newline at end of file
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-transports-http</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.cxf</groupId>
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ </dependency>
+ </dependencies>
+</project>