2008-03-04 13:41:49 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You 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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-parent</artifactId>
|
2008-09-22 15:50:04 -04:00
|
|
|
<version>5.3-SNAPSHOT</version>
|
2008-03-04 13:41:49 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-camel-loadtest</artifactId>
|
|
|
|
<packaging>bundle</packaging>
|
|
|
|
<name>ActiveMQ :: Camel :: Load Test</name>
|
|
|
|
<description>Load testing of the ActiveMQ broker using Camel</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- ActiveMQ Dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-core</artifactId>
|
|
|
|
</dependency>
|
2008-09-22 15:50:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-camel</artifactId>
|
|
|
|
</dependency>
|
2008-03-04 13:41:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
2008-09-22 15:50:04 -04:00
|
|
|
<artifactId>geronimo-jacc_1.1_spec</artifactId>
|
2008-03-04 13:41:49 -05:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activeio-core</artifactId>
|
|
|
|
<optional>false</optional>
|
|
|
|
</dependency>
|
|
|
|
<!-- Camel dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
|
</dependency>
|
2008-09-22 15:50:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
2008-03-04 13:41:49 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-spring</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
2008-09-22 15:50:04 -04:00
|
|
|
<artifactId>camel-spring</artifactId>
|
|
|
|
<type>test-jar</type>
|
2008-03-04 13:41:49 -05:00
|
|
|
</dependency>
|
2008-04-02 11:18:04 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
|
|
|
</dependency>
|
2008-03-04 13:41:49 -05:00
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Testing Dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Configure which tests are included/excuded -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkMode>pertest</forkMode>
|
|
|
|
<childDelegation>false</childDelegation>
|
2008-04-02 11:18:04 -04:00
|
|
|
<!-- <useFile>true</useFile> -->
|
2008-03-04 13:41:49 -05:00
|
|
|
<argLine>-Xmx512M</argLine>
|
|
|
|
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>org.apache.activemq.default.directory.prefix</name>
|
|
|
|
<value>target/</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
|
|
|
|
<includes>
|
|
|
|
<include>**/*Test.*</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
2008-03-20 09:20:59 -04:00
|
|
|
<!-- lets by default exclude tests requiring local broker -->
|
|
|
|
<exclude>**/localBroker/**.*</exclude>
|
2008-03-04 13:41:49 -05:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${basedir}/activemq-data</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|