Author: jbellis
Date: Wed Dec 14 16:03:44 2011
New Revision: 1214315
URL: http://svn.apache.org/viewvc?rev=1214315&view=rev
Log:
prevent rat from pulling down an older version of commons-lang than we ship in
lib, which was harmless but confusing
patch by Piotr Koaczkowski; reviewed by jbellis
Modified:
cassandra/branches/cassandra-1.0/build.xml
Modified: cassandra/branches/cassandra-1.0/build.xml
URL:
http://svn.apache.org/viewvc/cassandra/branches/cassandra-1.0/build.xml?rev=1214315&r1=1214314&r2=1214315&view=diff
==============================================================================
--- cassandra/branches/cassandra-1.0/build.xml (original)
+++ cassandra/branches/cassandra-1.0/build.xml Wed Dec 14 16:03:44 2011
@@ -378,7 +378,9 @@ url=${svn.entry.url}?pathrev=${svn.entry
<dependency groupId="com.thoughtworks.paranamer"
artifactId="paranamer-ant" version="2.1"/>
<dependency groupId="junit" artifactId="junit" version="4.6" />
<dependency groupId="commons-logging" artifactId="commons-logging"
version="1.1.1"/>
- <dependency groupId="org.apache.rat" artifactId="apache-rat"
version="0.6" />
+ <dependency groupId="org.apache.rat" artifactId="apache-rat"
version="0.6">
+ <exclusion groupId="commons-lang" artifactId="commons-lang"/>
+ </dependency>
<dependency groupId="org.apache.hadoop" artifactId="hadoop-core"
version="0.20.203.0"/>
<dependency groupId="net.sf.jopt-simple" artifactId="jopt-simple"
version="3.2"/>
<dependency groupId="net.java.dev.jna" artifactId="jna"
version="3.2.7"/>