2015-01-05 07:45:36 -05: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
|
|
|
|
|
|
|
|
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.
|
|
|
|
-->
|
2015-03-09 13:55:56 -04:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2014-10-31 06:20:28 -04:00
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-pom</artifactId>
|
2021-12-14 22:50:55 -05:00
|
|
|
<version>2.21.0-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
2015-01-19 10:03:00 -05:00
|
|
|
|
2015-04-21 09:49:05 -04:00
|
|
|
<name>ActiveMQ Artemis Tests POM</name>
|
2014-10-31 06:20:28 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
2015-04-27 17:32:30 -04:00
|
|
|
<artifactId>artemis-tests-pom</artifactId>
|
2014-10-31 06:20:28 -04:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<properties>
|
2014-11-19 14:58:44 -05:00
|
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
2022-01-17 10:50:19 -05:00
|
|
|
<byteman.version>4.0.18</byteman.version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</properties>
|
|
|
|
|
2015-01-19 10:03:00 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<!--## JMS Dependencies ## -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.components</groupId>
|
|
|
|
<artifactId>geronimo-jaspi</artifactId>
|
|
|
|
<version>2.0.0</version>
|
|
|
|
<!-- License: Apache: 2.0 -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2015-02-12 10:18:53 -05:00
|
|
|
<groupId>commons-logging</groupId>
|
2015-01-19 10:03:00 -05:00
|
|
|
<artifactId>commons-logging</artifactId>
|
2015-02-12 10:18:53 -05:00
|
|
|
<version>1.2</version>
|
2015-01-19 10:03:00 -05:00
|
|
|
<!-- License: Apache: 2.0 -->
|
|
|
|
</dependency>
|
2016-07-15 13:03:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.qpid</groupId>
|
|
|
|
<artifactId>qpid-jms-client</artifactId>
|
2016-11-02 19:18:52 -04:00
|
|
|
<version>${qpid.jms.version}</version>
|
2021-04-09 04:25:17 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_2.0_spec</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-07-15 13:03:31 -04:00
|
|
|
<!-- License: Apache: 2.0 -->
|
|
|
|
</dependency>
|
2021-04-09 04:25:17 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.management.j2ee</groupId>
|
|
|
|
<artifactId>jakarta.management.j2ee-api</artifactId>
|
|
|
|
<version>${jakarta.management.j2ee-api.version}</version>
|
|
|
|
<!-- License: EPL 2.0 -->
|
|
|
|
</dependency>
|
2016-07-15 13:03:31 -04:00
|
|
|
|
2015-01-19 10:03:00 -05:00
|
|
|
<!-- End JMS Dependencies -->
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipTests>${skipUnitTests}</skipTests>
|
2014-11-17 14:53:12 -05:00
|
|
|
<argLine>${activemq-surefire-argline}</argLine>
|
2014-10-31 06:20:28 -04:00
|
|
|
<excludes>
|
|
|
|
<!--todo this test is dependent on the jar so needs to be run post package as an integration test-->
|
|
|
|
<exclude>**/ManifestTest.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-03-06 07:09:22 -05:00
|
|
|
<profiles>
|
2015-06-23 21:50:54 -04:00
|
|
|
<profile>
|
2015-03-06 11:56:17 -05:00
|
|
|
<id>extra-tests</id>
|
2015-03-06 07:09:22 -05:00
|
|
|
<modules>
|
2015-06-23 21:50:54 -04:00
|
|
|
<!-- to run extra-tests you must define -DskipExtraTests=false
|
|
|
|
or run it with the tests profile -->
|
2015-03-06 11:56:17 -05:00
|
|
|
<module>extra-tests</module>
|
2015-03-06 07:09:22 -05:00
|
|
|
</modules>
|
|
|
|
</profile>
|
2020-11-14 11:12:38 -05:00
|
|
|
<profile>
|
|
|
|
<id>jmh</id>
|
|
|
|
<modules>
|
|
|
|
<module>performance-jmh</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2015-06-07 22:45:30 -04:00
|
|
|
<profile>
|
2016-04-01 15:46:20 -04:00
|
|
|
<!-- deprecated: use openwire-tests -->
|
2015-06-07 22:45:30 -04:00
|
|
|
<id>activemq5-unit-tests</id>
|
|
|
|
<modules>
|
|
|
|
<module>activemq5-unit-tests</module>
|
|
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
<skipActiveMQ5Tests>false</skipActiveMQ5Tests>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2016-04-01 15:46:20 -04:00
|
|
|
<profile>
|
|
|
|
<id>openwire-tests</id>
|
|
|
|
<modules>
|
|
|
|
<module>activemq5-unit-tests</module>
|
|
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
<skipActiveMQ5Tests>false</skipActiveMQ5Tests>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2015-09-04 23:41:23 -04:00
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<modules>
|
|
|
|
<module>activemq5-unit-tests</module>
|
2021-10-20 09:38:56 -04:00
|
|
|
<module>extra-tests</module>
|
|
|
|
<module>performance-jmh</module>
|
2015-09-04 23:41:23 -04:00
|
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
<skipActiveMQ5Tests>true</skipActiveMQ5Tests>
|
2021-10-20 09:38:56 -04:00
|
|
|
<skipExtraTests>true</skipExtraTests>
|
2015-09-04 23:41:23 -04:00
|
|
|
</properties>
|
|
|
|
</profile>
|
2015-03-06 07:09:22 -05:00
|
|
|
</profiles>
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<modules>
|
|
|
|
<module>unit-tests</module>
|
|
|
|
<module>joram-tests</module>
|
|
|
|
<module>timing-tests</module>
|
2015-03-06 11:56:17 -05:00
|
|
|
<module>jms-tests</module>
|
|
|
|
<module>integration-tests</module>
|
2018-01-23 06:18:07 -05:00
|
|
|
<module>karaf-client-integration-tests</module>
|
2017-12-13 21:53:19 -05:00
|
|
|
<module>compatibility-tests</module>
|
2015-03-06 11:56:17 -05:00
|
|
|
<module>soak-tests</module>
|
|
|
|
<module>stress-tests</module>
|
|
|
|
<module>performance-tests</module>
|
2016-07-15 13:03:31 -04:00
|
|
|
<module>artemis-test-support</module>
|
2017-04-04 20:20:56 -04:00
|
|
|
<module>smoke-tests</module>
|
2014-10-31 06:20:28 -04:00
|
|
|
</modules>
|
|
|
|
</project>
|