Author: ataylor
Date: 2011-10-12 04:04:52 -0400 (Wed, 12 Oct 2011)
New Revision: 11518
Modified:
trunk/hornetq-core/pom.xml
trunk/pom.xml
trunk/tests/integration-tests/pom.xml
trunk/tests/jms-tests/pom.xml
trunk/tests/unit-tests/pom.xml
Log:
fixed dependency issues with test jars
Modified: trunk/hornetq-core/pom.xml
===================================================================
--- trunk/hornetq-core/pom.xml 2011-10-12 02:27:00 UTC (rev 11517)
+++ trunk/hornetq-core/pom.xml 2011-10-12 08:04:52 UTC (rev 11518)
@@ -87,6 +87,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <version>2.3.2</version>
+ <executions>
+ <execution>
+ <phase>test</phase>
+ <goals>
+ <goal>test-jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2011-10-12 02:27:00 UTC (rev 11517)
+++ trunk/pom.xml 2011-10-12 08:04:52 UTC (rev 11518)
@@ -387,12 +387,12 @@
<module>tests</module>
</modules>
<properties>
- <skipUnitTests>false</skipUnitTests>
- <skipJmsTests>false</skipJmsTests>
- <skipJoramTests>false</skipJoramTests>
+ <skipUnitTests>true</skipUnitTests>
+ <skipJmsTests>true</skipJmsTests>
+ <skipJoramTests>true</skipJoramTests>
<skipIntegrationTests>false</skipIntegrationTests>
- <skipTimingTests>false</skipTimingTests>
- <skipConcurrentTests>false</skipConcurrentTests>
+ <skipTimingTests>true</skipTimingTests>
+ <skipConcurrentTests>true</skipConcurrentTests>
<skipStressTests>true</skipStressTests>
<skipSoakTests>true</skipSoakTests>
<skipPerformanceTests>true</skipPerformanceTests>
Modified: trunk/tests/integration-tests/pom.xml
===================================================================
--- trunk/tests/integration-tests/pom.xml 2011-10-12 02:27:00 UTC (rev 11517)
+++ trunk/tests/integration-tests/pom.xml 2011-10-12 08:04:52 UTC (rev 11518)
@@ -64,6 +64,16 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-commons</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-journal</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>org.jboss.javaee</groupId>
<artifactId>jboss-jca-api</artifactId>
</dependency>
@@ -92,6 +102,7 @@
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
+ <phase>test</phase>
<goals>
<goal>test-jar</goal>
</goals>
Modified: trunk/tests/jms-tests/pom.xml
===================================================================
--- trunk/tests/jms-tests/pom.xml 2011-10-12 02:27:00 UTC (rev 11517)
+++ trunk/tests/jms-tests/pom.xml 2011-10-12 08:04:52 UTC (rev 11518)
@@ -92,6 +92,7 @@
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
+ <phase>test</phase>
<goals>
<goal>test-jar</goal>
</goals>
Modified: trunk/tests/unit-tests/pom.xml
===================================================================
--- trunk/tests/unit-tests/pom.xml 2011-10-12 02:27:00 UTC (rev 11517)
+++ trunk/tests/unit-tests/pom.xml 2011-10-12 08:04:52 UTC (rev 11518)
@@ -59,6 +59,7 @@
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
+ <phase>test</phase>
<goals>
<goal>test-jar</goal>
</goals>
Show replies by date