Author: jstrachan
Date: Wed Mar 26 09:07:36 2008
New Revision: 641364
URL: http://svn.apache.org/viewvc?rev=641364&view=rev
Log:
Added full hamcrest dependency for testing
Modified:
activemq/trunk/activemq-core/pom.xml
activemq/trunk/pom.xml
Modified: activemq/trunk/activemq-core/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/activemq-core/pom.xml?rev=641364&r1=641363&r2=641364&view=diff
==============================================================================
--- activemq/trunk/activemq-core/pom.xml (original)
+++ activemq/trunk/activemq-core/pom.xml Wed Mar 26 09:07:36 2008
@@ -166,6 +166,11 @@
<scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-all</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<scope>test</scope>
Modified: activemq/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/trunk/pom.xml?rev=641364&r1=641363&r2=641364&view=diff
==============================================================================
--- activemq/trunk/pom.xml (original)
+++ activemq/trunk/pom.xml Wed Mar 26 09:07:36 2008
@@ -767,6 +767,7 @@
<version>${aopalliance-version}</version>
</dependency>
+ <!-- testing dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -789,6 +790,12 @@
<groupId>cglib</groupId>
<artifactId>cglib-full</artifactId>
<version>${cglib-version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.hamcrest</groupId>
+ <artifactId>hamcrest-all</artifactId>
+ <version>1.1</version>
<scope>test</scope>
</dependency>