Author: craigmcc
Date: Tue Nov 28 11:31:22 2006
New Revision: 480166
URL: http://svn.apache.org/viewvc?view=rev&rev=480166
Log:
In preparation for Commons Validator 1.3.1, explicitly declare a test scope
dependency on the ORO regular expression library. The upcoming 1.3.1 release
correctly marks this dependency as optional (not the case for 1.3.0), and we
are doing unit tests using the validators which require this library.
SHALE-342
Modified:
shale/framework/trunk/shale-validator/pom.xml
Modified: shale/framework/trunk/shale-validator/pom.xml
URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-validator/pom.xml?view=diff&rev=480166&r1=480165&r2=480166
==============================================================================
--- shale/framework/trunk/shale-validator/pom.xml (original)
+++ shale/framework/trunk/shale-validator/pom.xml Tue Nov 28 11:31:22 2006
@@ -83,6 +83,13 @@
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>oro</groupId>
+ <artifactId>oro</artifactId>
+ <version>2.0.8</version>
+ <scope>test</scope>
+ </dependency>
+
</dependencies>
<reporting>
|