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>
|
2014-11-11 07:46:32 -05:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2014-10-31 06:20:28 -04:00
|
|
|
</parent>
|
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>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>unit-tests</module>
|
|
|
|
<module>jms-tests</module>
|
|
|
|
<module>joram-tests</module>
|
|
|
|
<module>soak-tests</module>
|
|
|
|
<module>stress-tests</module>
|
|
|
|
<module>timing-tests</module>
|
|
|
|
<module>concurrent-tests</module>
|
|
|
|
<module>performance-tests</module>
|
|
|
|
<module>integration-tests</module>
|
|
|
|
<module>byteman-tests</module>
|
|
|
|
</modules>
|
|
|
|
</project>
|