diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-23 08:02:47 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2010-04-23 08:02:47 +0000 |
commit | 4d017c5ed0476dc90a75f988ec486619e1465ee5 (patch) | |
tree | 7ec94dc4fd2454b314428af6d13bff53003b7989 /sca-java-2.x/trunk/samples/webapps/helloworld-jms | |
parent | c93578fc2edb70c5bf0aac60c8af9be63116f092 (diff) |
Add integration tests to the webapp samples copied from itest distribution tests.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@937182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/samples/webapps/helloworld-jms')
-rw-r--r-- | sca-java-2.x/trunk/samples/webapps/helloworld-jms/pom.xml | 55 |
1 files changed, 35 insertions, 20 deletions
diff --git a/sca-java-2.x/trunk/samples/webapps/helloworld-jms/pom.xml b/sca-java-2.x/trunk/samples/webapps/helloworld-jms/pom.xml index 5f513cbbef..05ea4f48d1 100644 --- a/sca-java-2.x/trunk/samples/webapps/helloworld-jms/pom.xml +++ b/sca-java-2.x/trunk/samples/webapps/helloworld-jms/pom.xml @@ -33,38 +33,23 @@ <dependencies> <dependency> - <groupId>org.apache.tuscany.sca</groupId> - <artifactId>tuscany-sca-api</artifactId> + <groupId>org.apache.tuscany.sca.shades</groupId> + <artifactId>tuscany-base</artifactId> <version>2.0-SNAPSHOT</version> - <scope>compile</scope> </dependency> - <dependency> - <groupId>org.apache.tuscany.sca</groupId> - <artifactId>tuscany-implementation-web-runtime</artifactId> - <version>2.0-SNAPSHOT</version> - <scope>runtime</scope> - </dependency> - - <dependency> - <groupId>org.apache.tuscany.sca</groupId> - <artifactId>tuscany-binding-jms-runtime</artifactId> + <groupId>org.apache.tuscany.sca.shades</groupId> + <artifactId>tuscany-jms</artifactId> <version>2.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-core</artifactId> - <version>5.1.0</version> + <version>5.3.0</version> <scope>runtime</scope> </dependency> - <dependency> - <groupId>backport-util-concurrent</groupId> - <artifactId>backport-util-concurrent</artifactId> - <version>3.1</version> - </dependency> - </dependencies> <build> @@ -74,6 +59,36 @@ <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.18</version> + <configuration> + <contextPath>helloworld-jms</contextPath> + <stopKey>foo</stopKey> + <stopPort>9999</stopPort> + </configuration> + <executions> + <execution> + <id>start-jetty</id> + <phase>process-test-classes</phase> + <goals> + <goal>run</goal> + </goals> + <configuration> + <scanIntervalSeconds>0</scanIntervalSeconds> + <daemon>true</daemon> + <connectors> + <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector"> + <port>8085</port> + </connector> + </connectors> + </configuration> + </execution> + <execution> + <id>stop-jetty</id> + <phase>prepare-package</phase> + <goals> + <goal>stop</goal> + </goals> + </execution> + </executions> </plugin> </plugins> </build> |