Revision: 224
http://xmlunit.svn.sourceforge.net/xmlunit/?rev=224&view=rev
Author: bodewig
Date: 2007-07-30 21:47:41 -0700 (Mon, 30 Jul 2007)
Log Message:
-----------
add an optional dependency on JUnit 3.x
Modified Paths:
--------------
trunk/xmlunit/src/etc/xmlunit.pom
Modified: trunk/xmlunit/src/etc/xmlunit.pom
===================================================================
--- trunk/xmlunit/src/etc/xmlunit.pom 2007-07-05 08:19:14 UTC (rev 223)
+++ trunk/xmlunit/src/etc/xmlunit.pom 2007-07-31 04:47:41 UTC (rev 224)
@@ -1,3 +1,11 @@
+<?xml version="1.0"?>
+<!--
+
+ This POM is not usable as means to build XMLUnit with Maven2, it is
+ a minimal POM to allow XMLUnit's artifacts to be added to a Maven
+ repository.
+
+-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>@GROUP@</groupId>
@@ -16,5 +24,12 @@
<scm>
<url>http://xmlunit.svn.sourceforge.net/viewvc/xmlunit/</url>
</scm>
- <dependencies/>
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.2</version>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|