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.
|
|
|
|
-->
|
2014-10-31 06:20:28 -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">
|
|
|
|
<parent>
|
2014-11-17 09:23:06 -05:00
|
|
|
<groupId>org.apache.activemq</groupId>
|
|
|
|
<artifactId>activemq-pom</artifactId>
|
2015-03-06 10:25:47 -05:00
|
|
|
<version>6.0.0</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
2015-01-19 10:03:00 -05:00
|
|
|
|
2014-11-11 07:46:32 -05:00
|
|
|
<name>ActiveMQ6 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>
|
|
|
|
<artifactId>activemq-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>
|
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>
|
|
|
|
<!-- 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>
|
|
|
|
<profile>
|
|
|
|
<id>banned-tests</id>
|
|
|
|
<modules>
|
|
|
|
<module>jms-tests</module>
|
|
|
|
<module>integration-tests</module>
|
|
|
|
<module>byteman-tests</module>
|
|
|
|
<module>soak-tests</module>
|
|
|
|
<module>stress-tests</module>
|
|
|
|
<module>concurrent-tests</module>
|
|
|
|
<module>performance-tests</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2014-10-31 06:20:28 -04:00
|
|
|
<modules>
|
|
|
|
<module>unit-tests</module>
|
|
|
|
<module>joram-tests</module>
|
|
|
|
<module>timing-tests</module>
|
|
|
|
</modules>
|
|
|
|
</project>
|