56 lines
1.9 KiB
XML
56 lines
1.9 KiB
XML
<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>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-pom</artifactId>
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
<name>ActiveMQ6 Tests POM</name>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.apache.activemq.tests</groupId>
|
|
<artifactId>activemq-tests-pom</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<activemq.basedir>${project.basedir}/..</activemq.basedir>
|
|
</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>
|
|
<argLine>${activemq-surefire-argline}</argLine>
|
|
<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>
|