2005-12-30 17:37:11 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-03-29 20:12:00 -05:00
|
|
|
|
2005-12-30 17:37:11 -05:00
|
|
|
<!--
|
2006-07-27 23:04:41 -04:00
|
|
|
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
|
2006-07-14 09:11:42 -04:00
|
|
|
|
|
|
|
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.
|
2005-12-30 17:37:11 -05:00
|
|
|
-->
|
2006-03-29 20:12:00 -05:00
|
|
|
|
2006-07-14 09:11:42 -04:00
|
|
|
<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">
|
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-15 19:33:05 -04:00
|
|
|
<artifactId>activemq-parent</artifactId>
|
2007-12-20 11:23:16 -05:00
|
|
|
<version>5.1-SNAPSHOT</version>
|
2005-12-12 12:53:59 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>activemq-core</artifactId>
|
2007-09-20 10:16:12 -04:00
|
|
|
<packaging>bundle</packaging>
|
2005-12-21 22:43:57 -05:00
|
|
|
<name>ActiveMQ :: Core</name>
|
|
|
|
<description>The ActiveMQ Message Broker and Client implementations</description>
|
2005-12-12 12:53:59 -05:00
|
|
|
|
2007-09-20 10:16:12 -04:00
|
|
|
<properties>
|
|
|
|
<activemq.osgi.import.pkg>
|
|
|
|
javax.jmdns*;resolution:=optional,
|
|
|
|
org.apache.activeio*;resolution:=optional,
|
2007-11-28 05:26:00 -05:00
|
|
|
org.apache.camel*;resolution:=optional,
|
2007-09-20 10:16:12 -04:00
|
|
|
org.apache.commons.pool*;resolution:=optional,
|
|
|
|
org.apache.derby*;resolution:=optional,
|
|
|
|
org.apache.tools.ant*;resolution:=optional,
|
|
|
|
org.apache.xbean*;resolution:=optional,
|
|
|
|
org.apache.xpath*;resolution:=optional,
|
|
|
|
org.codehaus.jam*;resolution:=optional,
|
|
|
|
org.springframework*;resolution:=optional,
|
|
|
|
org.w3c.dom.traversal*;resolution:=optional,
|
|
|
|
*
|
|
|
|
</activemq.osgi.import.pkg>
|
|
|
|
</properties>
|
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependencies>
|
2006-02-18 01:03:51 -05:00
|
|
|
|
2006-04-30 01:01:50 -04:00
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Required Dependencies -->
|
|
|
|
<!-- =============================== -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
2007-08-07 14:36:58 -04:00
|
|
|
<artifactId>commons-logging-api</artifactId>
|
2006-04-30 01:01:50 -04:00
|
|
|
</dependency>
|
2005-12-20 09:50:52 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-core</artifactId>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
2006-11-25 01:00:56 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
2006-11-25 01:00:56 -05:00
|
|
|
</dependency>
|
2006-04-30 01:01:50 -04:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activeio-core</artifactId>
|
2006-04-30 01:01:50 -04:00
|
|
|
<optional>false</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
2006-04-30 01:01:50 -04:00
|
|
|
|
2007-08-07 14:36:58 -04:00
|
|
|
|
2006-03-29 20:12:00 -05:00
|
|
|
<!-- =============================== -->
|
2007-08-07 14:36:58 -04:00
|
|
|
<!-- Optional Dependencies -->
|
2006-03-29 20:12:00 -05:00
|
|
|
<!-- =============================== -->
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
2006-07-26 02:07:11 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2006-04-30 01:01:50 -04:00
|
|
|
<artifactId>activemq-jaas</artifactId>
|
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-jms</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
2006-03-22 14:52:39 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2006-03-22 14:52:39 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-management_1.0_spec</artifactId>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2006-03-22 14:52:39 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-j2ee-jacc_1.0_spec</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2006-03-29 20:12:00 -05:00
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2007-08-07 14:36:58 -04:00
|
|
|
<!-- for XML parsing -->
|
2006-03-29 20:12:00 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>xbean-spring</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2006-03-29 20:12:00 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring</artifactId>
|
|
|
|
<optional>true</optional>
|
2006-07-14 09:11:42 -04:00
|
|
|
</dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
|
2006-03-29 20:12:00 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
<optional>true</optional>
|
2006-07-14 09:11:42 -04:00
|
|
|
</dependency>
|
2006-03-29 20:12:00 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>activemq</groupId>
|
|
|
|
<artifactId>jmdns</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>xalan</groupId>
|
|
|
|
<artifactId>xalan</artifactId>
|
2006-04-17 18:39:14 -04:00
|
|
|
<optional>true</optional>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
<!--- not really a dependency at all - just added optionally to get the generator working -->
|
2005-12-12 12:53:59 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-openwire-generator</artifactId>
|
2006-07-13 06:20:29 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
|
|
|
|
<!-- =============================== -->
|
|
|
|
<!-- Testing Dependencies -->
|
|
|
|
<!-- =============================== -->
|
2006-03-09 02:11:37 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-02-06 14:09:51 -05:00
|
|
|
<dependency>
|
2007-08-07 14:36:58 -04:00
|
|
|
<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>${pom.groupId}</groupId>
|
|
|
|
<artifactId>activeio-core</artifactId>
|
|
|
|
<optional>false</optional>
|
|
|
|
<type>test-jar</type>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- testing camel helpers -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-core</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.camel</groupId>
|
|
|
|
<artifactId>camel-spring</artifactId>
|
|
|
|
<type>test-jar</type>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- database testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-primitives</groupId>
|
|
|
|
<artifactId>commons-primitives</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>axion</groupId>
|
|
|
|
<artifactId>axion</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>regexp</groupId>
|
|
|
|
<artifactId>regexp</artifactId>
|
|
|
|
<scope>test</scope>
|
2007-02-06 14:09:51 -05:00
|
|
|
</dependency>
|
2006-03-09 02:11:37 -05:00
|
|
|
|
2006-08-09 07:37:18 -04:00
|
|
|
<!-- LDAP tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.directory.server</groupId>
|
|
|
|
<artifactId>apacheds-core</artifactId>
|
2006-10-26 06:28:08 -04:00
|
|
|
<version>1.0.0</version>
|
|
|
|
<!--<version>1.0-RC3</version>-->
|
2006-08-09 07:37:18 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>nlog4j</artifactId>
|
|
|
|
<version>1.2.24</version>
|
2006-11-02 03:57:54 -05:00
|
|
|
<scope>test</scope>
|
2006-08-09 07:37:18 -04:00
|
|
|
</dependency>
|
2005-12-12 12:53:59 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2007-07-30 10:10:04 -04:00
|
|
|
<reporting>
|
2005-12-28 10:25:44 -05:00
|
|
|
<plugins>
|
2007-04-25 08:00:46 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
2007-04-30 06:03:47 -04:00
|
|
|
<links>
|
|
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
|
|
|
|
<link>http://java.sun.com/j2ee/1.4/docs/api/</link>
|
|
|
|
<link>http://jakarta.apache.org/commons/logging/apidocs/</link>
|
|
|
|
<link>http://junit.sourceforge.net/javadoc/</link>
|
|
|
|
</links>
|
|
|
|
<stylesheetfile>${basedir}/../etc/css/stylesheet.css</stylesheetfile>
|
|
|
|
<linksource>true</linksource>
|
|
|
|
<maxmemory>256m</maxmemory>
|
|
|
|
<source>1.5</source>
|
2007-04-25 08:00:46 -04:00
|
|
|
<groups>
|
|
|
|
<group>
|
|
|
|
<title>JMS Client</title>
|
|
|
|
<packages>org.apache.activemq:org.apache.activemq.command</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>JMS Client support classes for working with BLOBs and JNDI</title>
|
|
|
|
<packages>org.apache.activemq.blob:org.apache.activemq.jndi</packages>
|
|
|
|
</group>
|
2007-10-09 07:28:38 -04:00
|
|
|
<group>
|
|
|
|
<title>Enterprise Integration Pattern support via Camel</title>
|
|
|
|
<packages>org.apache.activemq.camel:org.apache.activemq.camel.*</packages>
|
|
|
|
</group>
|
2007-04-25 08:00:46 -04:00
|
|
|
<group>
|
|
|
|
<title>Spring support</title>
|
|
|
|
<packages>org.apache.activemq.spring:org.apache.activemq.xbean:org.apache.activemq.pool</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>JMS Client Implementation classes</title>
|
|
|
|
<packages>org.apache.activemq.filter:org.apache.activemq.management:org.apache.activemq.selector:org.apache.activemq.thread</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Broker implementation</title>
|
|
|
|
<packages>org.apache.activemq.advisory:org.apache.activemq.broker:org.apache.activemq.broker.*:org.apache.activemq.state:org.apache.activemq.security:org.apache.activemq.transaction</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Broker Persistent Store</title>
|
|
|
|
<packages>org.apache.activemq.store:org.apache.activemq.store.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Kaha fast file based storage</title>
|
|
|
|
<packages>org.apache.activemq.kaha:org.apache.activemq.kaha.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Transports</title>
|
|
|
|
<packages>org.apache.activemq.transport:org.apache.activemq.transport.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Memory handling</title>
|
|
|
|
<packages>org.apache.activemq.memory:org.apache.activemq.memory.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Networks of Brokers</title>
|
|
|
|
<packages>org.apache.activemq.network:org.apache.activemq.network.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>OpenWire support</title>
|
|
|
|
<packages>org.apache.activemq.openwire:org.apache.activemq.openwire.*</packages>
|
|
|
|
</group>
|
|
|
|
<group>
|
|
|
|
<title>Utility classes</title>
|
|
|
|
<packages>org.apache.activemq.util:org.apache.activemq.wireformat:org.apache.activemq.proxy</packages>
|
|
|
|
</group>
|
|
|
|
</groups>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-06-25 03:02:36 -04:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
<configuration>
|
|
|
|
<threshold>Normal</threshold>
|
|
|
|
<effort>Default</effort>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2007-07-30 10:10:04 -04:00
|
|
|
</reporting>
|
|
|
|
|
2007-04-30 06:03:47 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2005-12-28 10:25:44 -05:00
|
|
|
<!-- Configure which tests are included/excuded -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<forkMode>pertest</forkMode>
|
2006-01-03 13:54:54 -05:00
|
|
|
<childDelegation>false</childDelegation>
|
|
|
|
<useFile>true</useFile>
|
2006-05-03 10:10:07 -04:00
|
|
|
<argLine>-Xmx512M</argLine>
|
2007-02-26 14:01:22 -05:00
|
|
|
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>org.apache.activemq.default.directory.prefix</name>
|
|
|
|
<value>target/</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
|
2006-03-10 18:52:45 -05:00
|
|
|
<includes>
|
2007-05-29 02:42:48 -04:00
|
|
|
<include>**/*Test.*</include>
|
2006-03-10 18:52:45 -05:00
|
|
|
</includes>
|
2005-12-28 10:25:44 -05:00
|
|
|
<excludes>
|
2006-03-13 17:59:08 -05:00
|
|
|
|
2005-12-28 10:25:44 -05:00
|
|
|
<!-- These tests run too slow to execute as part of the unit tests -->
|
2007-08-10 04:22:09 -04:00
|
|
|
<exclude>**/TransactionNotStartedErrorTest.*</exclude>
|
2006-01-03 15:47:18 -05:00
|
|
|
<exclude>**/DefaultStoreBrokerTest.*</exclude>
|
|
|
|
<exclude>**/TcpTransportBrokerTest.*</exclude>
|
2006-03-13 17:59:08 -05:00
|
|
|
<exclude>**/activeio/*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-03-13 17:59:08 -05:00
|
|
|
<!-- These are performance tests so take too long to run -->
|
|
|
|
<exclude>**/perf/*</exclude>
|
2008-01-04 11:07:18 -05:00
|
|
|
|
|
|
|
<!-- These are load tests so take too long to run -->
|
|
|
|
<exclude>**/load/*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-03-13 17:59:08 -05:00
|
|
|
<!-- http://jira.activemq.org/jira/browse/AMQ-594 -->
|
|
|
|
<exclude>**/SimpleNetworkTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-03-13 17:59:08 -05:00
|
|
|
<!-- http://jira.activemq.org/jira/browse/AMQ-610 -->
|
|
|
|
<exclude>**/FanoutTransportBrokerTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-03-13 17:59:08 -05:00
|
|
|
<!-- http://jira.activemq.org/jira/browse/AMQ-626 -->
|
|
|
|
<exclude>**/MultipleTestsWithSpringFactoryBeanTest.*</exclude>
|
|
|
|
<exclude>**/MultipleTestsWithXBeanFactoryBeanTest.*</exclude>
|
|
|
|
<exclude>**/MultipleTestsWithSpringXBeanFactoryBeanTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-06-05 06:01:55 -04:00
|
|
|
<!-- these seem to fail only in m2 -->
|
2007-03-08 08:11:12 -05:00
|
|
|
<!--<exclude>**/TransactedTopicMasterSlaveTest.*</exclude>-->
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-06-05 06:01:55 -04:00
|
|
|
<!-- Kaha in flux - removing tests -->
|
2007-03-08 08:11:12 -05:00
|
|
|
<!--<exclude>**/KahaXARecoveryBrokerTest.*</exclude>-->
|
|
|
|
<!--<exclude>**/KahaRecoveryBrokerTest.*</exclude>-->
|
2006-06-05 06:01:55 -04:00
|
|
|
|
2006-06-12 09:09:58 -04:00
|
|
|
<!-- Multicast and UDP based tests fail on GBuild -->
|
|
|
|
<exclude>**/PeerTransportTest.*</exclude>
|
2006-03-13 17:59:08 -05:00
|
|
|
<exclude>**/MulticastTransportTest.*</exclude>
|
2006-05-03 06:13:33 -04:00
|
|
|
<exclude>**/MulticastNetworkTest.*</exclude>
|
2006-05-03 10:10:07 -04:00
|
|
|
<exclude>**/UnreliableUdpTransportTest.*</exclude>
|
|
|
|
<exclude>**/SslTransportBrokerTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-05-03 10:10:07 -04:00
|
|
|
<!-- this one is a little flaky and can fail on some platforms randomly -->
|
2006-05-03 06:13:33 -04:00
|
|
|
<exclude>**/QuickJournalRecoveryBrokerTest.*</exclude>
|
2006-12-22 16:22:42 -05:00
|
|
|
<exclude>**/QuickJournalXARecoveryBrokerTest.*</exclude>
|
2006-05-03 10:10:07 -04:00
|
|
|
<exclude>**/RendezvousDiscoverTransportTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-06-05 07:14:27 -04:00
|
|
|
<!-- UDP related tests someimes fail on some platforms -->
|
2006-06-05 08:37:12 -04:00
|
|
|
<exclude>**/UdpTransportTest.*</exclude>
|
2006-06-05 08:28:44 -04:00
|
|
|
<exclude>**/UdpTransportUsingServerTest.*</exclude>
|
2006-06-05 07:14:27 -04:00
|
|
|
<exclude>**/UdpSendReceiveWithTwoConnectionsTest.*</exclude>
|
2006-06-05 08:28:44 -04:00
|
|
|
<exclude>**/UdpSendReceiveWithTwoConnectionsAndLargeMessagesTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-07-07 04:57:34 -04:00
|
|
|
<!-- m2 tests failing since move from assembly -->
|
|
|
|
<exclude>**/TwoBrokerMessageNotSentToRemoteWhenNoConsumerTest.*</exclude>
|
|
|
|
<exclude>**/TwoBrokerQueueClientsReconnectTest.*</exclude>
|
|
|
|
<exclude>**/ThreeBrokerQueueNetworkUsingTcpTest.*</exclude>
|
|
|
|
<exclude>**/QueueConsumerCloseAndReconnectTest.*</exclude>
|
2006-07-11 06:49:15 -04:00
|
|
|
<exclude>**/ThreeBrokerQueueNetworkTest.*</exclude>
|
2006-07-11 09:07:04 -04:00
|
|
|
<exclude>**/ThreeBrokerTopicNetworkTest.*</exclude>
|
|
|
|
<exclude>**/ThreeBrokerTopicNetworkUsingTcpTest.*</exclude>
|
2006-12-28 15:58:00 -05:00
|
|
|
<exclude>**/TwoBrokerMulticastQueueTest.*</exclude>
|
2006-07-14 09:11:42 -04:00
|
|
|
|
2006-07-07 04:57:34 -04:00
|
|
|
<!-- TODO move to optional module... -->
|
|
|
|
<exclude>**/TwoBrokerTopicSendReceiveUsingHttpTest.*</exclude>
|
2006-07-24 15:51:35 -04:00
|
|
|
|
|
|
|
<!-- This test only works on machines which have ssh propertly configured -->
|
|
|
|
<exclude>**/SSHTunnelNetworkReconnectTest.*</exclude>
|
2007-03-08 08:11:12 -05:00
|
|
|
<!-- TODO need to get the JUnit test configured to create SSL sockets nicely via system properties -->
|
|
|
|
<exclude>**/StompSslTest.*</exclude>
|
|
|
|
|
2006-08-09 07:37:18 -04:00
|
|
|
<!-- see http://issues.apache.org/activemq/browse/AMQ-826 -->
|
|
|
|
<!-- have not yet figured out the way to configure ApacheDS via Spring -->
|
|
|
|
<exclude>**/LDAPAuthorizationMapTest.*</exclude>
|
2006-10-23 14:51:21 -04:00
|
|
|
|
2006-11-16 05:56:07 -05:00
|
|
|
<!-- http://issues.apache.org/activemq/browse/AMQ-1027 -->
|
|
|
|
<exclude>**/FailoverConsumerTest.*</exclude>
|
|
|
|
|
2007-01-09 16:14:59 -05:00
|
|
|
<!-- The NIO implemenation is not working properly on OS X.. -->
|
|
|
|
<exclude>**/nio/**</exclude>
|
2007-10-17 23:53:45 -04:00
|
|
|
<!-- A test used for memory profiling only. -->
|
|
|
|
<exclude>**/NetworkConnectionsCleanedupTest.*/**</exclude>
|
2007-12-04 06:27:58 -05:00
|
|
|
|
|
|
|
<exclude>**/NetworkConnectionsCleanedupTest.*/**</exclude>
|
|
|
|
|
|
|
|
<exclude>**/amq1490/*</exclude>
|
|
|
|
<exclude>**/archive/*</exclude>
|
2007-03-12 10:01:01 -04:00
|
|
|
|
|
|
|
<exclude>**/AMQDeadlockTest3.*</exclude>
|
2005-12-28 10:25:44 -05:00
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2007-08-22 11:09:44 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-clean-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<filesets>
|
|
|
|
<fileset>
|
|
|
|
<directory>${basedir}/activemq-data</directory>
|
|
|
|
</fileset>
|
|
|
|
</filesets>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2006-09-26 22:42:47 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
2007-06-15 03:41:54 -04:00
|
|
|
|
|
|
|
<executions>
|
2007-08-15 08:34:24 -04:00
|
|
|
<execution>
|
|
|
|
<id>package</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<echo>Deleting unwanted resources from the test-jar</echo>
|
|
|
|
<delete dir="${project.build.directory}/test-classes" verbose="true">
|
|
|
|
<include name="*.*"/>
|
|
|
|
</delete>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
|
2007-06-15 03:41:54 -04:00
|
|
|
<execution>
|
|
|
|
<id>site</id>
|
|
|
|
<phase>site</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<echo>Running the XSDDoc task</echo>
|
|
|
|
<taskdef name="xsddoc" classname="net.sf.xframe.xsddoc.Task"/>
|
|
|
|
<mkdir dir="${basedir}/target/site/xsddoc"/>
|
|
|
|
<xsddoc file="${basedir}/target/xbean/activemq.xsd"
|
|
|
|
out="${basedir}/target/site/xsddoc"
|
|
|
|
doctitle="Apache ActiveMQ XML Schema Reference"
|
|
|
|
header="<a href='http://activemq.apache.org/'>Apache ActiveMQ</a>"
|
|
|
|
footer="Copyright 2007 (c) the <a href='http://www.apache.org/'>Apache Software Foundation</a>"
|
|
|
|
verbose="false"/>
|
|
|
|
<!--
|
|
|
|
css="${basedir}/../etc/css/stylesheet.css"
|
|
|
|
-->
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2006-09-26 22:45:45 -04:00
|
|
|
<dependencies>
|
2007-06-15 03:41:54 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>xsddoc</groupId>
|
|
|
|
<artifactId>maven-xsddoc-plugin</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2006-09-26 22:42:47 -04:00
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
|
2007-08-15 08:34:24 -04:00
|
|
|
<!-- generate the attached tests jar -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2006-08-01 06:59:22 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>javacc-maven-plugin</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<sourceDirectory>${basedir}/src/main/grammar</sourceDirectory>
|
|
|
|
<outputDirectory>${basedir}/target/generated-javacc</outputDirectory>
|
|
|
|
<packageName>org.apache.activemq.selector</packageName>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>javacc</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2005-12-28 10:25:44 -05:00
|
|
|
<plugin>
|
2006-07-14 09:11:42 -04:00
|
|
|
<groupId>org.apache.xbean</groupId>
|
|
|
|
<artifactId>maven-xbean-plugin</artifactId>
|
2006-09-04 00:56:25 -04:00
|
|
|
<version>${xbean-version}</version>
|
2005-12-28 10:25:44 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<configuration>
|
2006-07-14 09:11:42 -04:00
|
|
|
<namespace>http://activemq.org/config/1.0</namespace>
|
2006-11-14 12:11:37 -05:00
|
|
|
<schema>target/xbean/activemq.xsd</schema>
|
2007-09-10 14:41:32 -04:00
|
|
|
<generateSpringSchemasFile>false</generateSpringSchemasFile>
|
2005-12-28 10:25:44 -05:00
|
|
|
</configuration>
|
|
|
|
<goals>
|
2006-07-14 09:11:42 -04:00
|
|
|
<goal>mapping</goal>
|
2005-12-28 10:25:44 -05:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2006-08-01 06:59:22 -04:00
|
|
|
<!-- lets ensure that the XSD gets deployed -->
|
2005-12-28 10:25:44 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
2006-08-01 06:59:22 -04:00
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
2005-12-28 10:25:44 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2006-08-01 06:59:22 -04:00
|
|
|
<id>attach-artifacts</id>
|
|
|
|
<phase>package</phase>
|
2005-12-28 10:25:44 -05:00
|
|
|
<goals>
|
2006-08-01 06:59:22 -04:00
|
|
|
<goal>attach-artifact</goal>
|
2005-12-28 10:25:44 -05:00
|
|
|
</goals>
|
2006-08-01 06:59:22 -04:00
|
|
|
<configuration>
|
|
|
|
<artifacts>
|
|
|
|
<artifact>
|
2006-11-14 12:11:37 -05:00
|
|
|
<file>${basedir}/target/xbean/activemq.xsd</file>
|
2006-08-01 06:59:22 -04:00
|
|
|
<type>xsd</type>
|
|
|
|
</artifact>
|
|
|
|
<artifact>
|
2006-11-14 12:11:37 -05:00
|
|
|
<file>${basedir}/target/xbean/activemq.xsd.html</file>
|
2006-08-01 06:59:22 -04:00
|
|
|
<type>xsd.html</type>
|
|
|
|
</artifact>
|
|
|
|
</artifacts>
|
|
|
|
</configuration>
|
2005-12-28 10:25:44 -05:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2006-04-17 18:39:14 -04:00
|
|
|
<profiles>
|
2007-07-30 10:10:04 -04:00
|
|
|
|
|
|
|
<profile>
|
|
|
|
<id>openwire-generate</id>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-openwire-generator</artifactId>
|
2007-08-02 09:03:33 -04:00
|
|
|
<version>${version}</version>
|
2007-07-30 10:10:04 -04:00
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<echo>Running OpenWire Generator</echo>
|
|
|
|
<taskdef name="generate" classname="org.apache.activemq.openwire.tool.JavaGeneratorTask" classpathref="maven.compile.classpath"/>
|
|
|
|
<generate version="3" basedir="${basedir}"/>
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
|
2006-04-17 18:39:14 -04:00
|
|
|
<profile>
|
|
|
|
<id>jdk1.4</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>1.4</jdk>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
2006-06-09 04:01:08 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>activesoap</groupId>
|
|
|
|
<artifactId>jaxp-api</artifactId>
|
|
|
|
</dependency>
|
2006-04-17 18:39:14 -04:00
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2007-07-30 10:10:04 -04:00
|
|
|
|
2006-04-17 18:39:14 -04:00
|
|
|
</profiles>
|
|
|
|
|
2006-04-15 19:33:05 -04:00
|
|
|
</project>
|