mirror of https://github.com/apache/cassandra
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 git-svn-id: https://svn.apache.org/repos/asf/cassandra/branches/cassandra-1.0@1214315 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b681f4bc28
commit
73e4ceb94f
|
|
@ -378,7 +378,9 @@ url=${svn.entry.url}?pathrev=${svn.entry.commit.revision}
|
|||
<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"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue