Hiram R. Chirino f451ad04bf - Switched the m2 builds to use maven-one-plugin so that the activeio jars can be used in the maven 1 build activemq is using.
- the m2 build now uses the same groupId that our m1 activemq build is using.  I know it's not the m2 way to name groups, we I'm willing to live with this until we are out of the incubator and using m2 to do builds by default.
- Ported activemq to use activeio 3.0-SNAPSHOT from activeio 2.1, since the 3.x stuff is in a new package space, it should not conflict with previous version (for example the version used in Geronimo).



git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@388677 13f79535-47bb-0310-9956-ffa450edef68
2006-03-24 23:41:23 +00:00

178 lines
5.6 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2005-2006 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE project>
<project>
<pomVersion>3</pomVersion>
<extend>${basedir}/../etc/project.xml</extend>
<name>ActiveMQ :: System Test</name>
<id>activemq-systest</id>
<shortDescription>
System Testing Framework for ActiveMQ
</shortDescription>
<description>System Testing Framework for ActiveMQ</description>
<package>org.apache.activemq.systest</package>
<packageGroups>
<packageGroup>
<title>The core APIs of the system testing agents</title>
<packages>org.apache.activemq.systest</packages>
</packageGroup>
<packageGroup>
<title>The single VM implementations</title>
<packages>org.apache.activemq.systest.impl.vm</packages>
</packageGroup>
<packageGroup>
<title>The testing use cases and scenarios</title>
<packages>org.apache.activemq.systest.usecase.*</packages>
</packageGroup>
</packageGroups>
<dependencies>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
<version>${geronimo_spec_j2ee_connector_version}</version>
<properties>
<rar.bundle>false</rar.bundle>
<lib>true</lib>
</properties>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>activemq-core</artifactId>
<version>${pom.currentVersion}</version>
<properties>
<rar.bundle>true</rar.bundle>
</properties>
</dependency>
<dependency>
<groupId>springframework</groupId>
<artifactId>spring</artifactId>
<version>${spring_version}</version>
<url>http://www.springframework.org</url>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
<version>${cglib_full_version}</version>
<url>http://cglib.sourceforge.net/</url>
</dependency>
<dependency>
<groupId>activemq</groupId>
<artifactId>jmdns</artifactId>
<version>${jmdns_version}</version>
<properties>
<rar.bundle>true</rar.bundle>
</properties>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>activeio-core</artifactId>
<version>${activeio_version}</version>
<properties>
<rar.bundle>true</rar.bundle>
</properties>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${derby_version}</version>
<properties>
<rar.bundle>true</rar.bundle>
</properties>
</dependency>
<!-- for systest Ant task -->
<dependency>
<groupId>annogen</groupId>
<artifactId>annogen</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.2</version>
</dependency>
</dependencies>
<build>
<nagEmailAddress>dev@activemq.codehaus.org</nagEmailAddress>
<sourceDirectory>src/main/java</sourceDirectory>
<unitTestSourceDirectory>target/test</unitTestSourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
<unitTest>
<resources>
<resource>
<directory>target/test</directory>
<includes>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
<resources>
<resource>
<directory>src/test/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
</resource>
</resources>
<includes>
<include>**/*Test.*</include>
</includes>
<excludes>
<exclude>**/broker_separate_process/**</exclude>
<exclude>**/broker/topic/nonDurable/TwoBrokerNetworkScenarioTest.*</exclude>
<exclude>**/broker/topic/nonDurableTransacted/TwoBrokerNetworkScenarioTest.*</exclude>
<exclude>**/broker_non_persistent/topic/nonDurable/TwoBrokerNetworkScenarioTest.*</exclude>
<exclude>**/broker_non_persistent/topic/nonDurableTransacted/TwoBrokerNetworkConnectedBeforeStartScenarioTest.*</exclude>
<exclude>**/broker_non_persistent/topic/nonDurableTransacted/TwoBrokerNetworkScenarioTest.*</exclude>
<exclude>**/broker/topic/durable/TwoBrokerNetworkConnectedBeforeStartScenarioTest.*</exclude>
<exclude>**/broker/topic/durableTransacted/TwoBrokerNetworkConnectedBeforeStartScenarioTest.*</exclude>
<exclude>**/broker/topic/nonDurable/TwoBrokerNetworkConnectedBeforeStartScenarioTest.*</exclude>
<exclude>**/broker_non_persistent/topic/durable/TwoBrokerNetworkScenarioTest.*</exclude>
<exclude>**/broker_non_persistent/topic/durableTransacted.TwoBrokerNetworkScenarioTest.*</exclude>
</excludes>
</unitTest>
</build>
</project>