HADOOP-6800. Harmonize JAR library versions.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@959501 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8970e93b01
commit
451c8ae5e8
@ -1657,6 +1657,8 @@ Release 0.21.0 - Unreleased
|
|||||||
HADOOP-6826. Revert FileSystem create method that takes CreateFlags.
|
HADOOP-6826. Revert FileSystem create method that takes CreateFlags.
|
||||||
(tomwhite)
|
(tomwhite)
|
||||||
|
|
||||||
|
HADOOP-6800. Harmonize JAR library versions. (tomwhite)
|
||||||
|
|
||||||
Release 0.20.3 - Unreleased
|
Release 0.20.3 - Unreleased
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
|
2
ivy.xml
2
ivy.xml
@ -265,6 +265,8 @@
|
|||||||
name="avro"
|
name="avro"
|
||||||
rev="${avro.version}"
|
rev="${avro.version}"
|
||||||
conf="common->default">
|
conf="common->default">
|
||||||
|
<exclude module="ant"/>
|
||||||
|
<exclude module="jetty"/>
|
||||||
<exclude module="slf4j-simple"/>
|
<exclude module="slf4j-simple"/>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency org="org.codehaus.jackson"
|
<dependency org="org.codehaus.jackson"
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<artifactId>commons-httpclient</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-codec</groupId>
|
<groupId>commons-codec</groupId>
|
||||||
@ -106,7 +106,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>4.5</version>
|
<version>4.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>hsqldb</groupId>
|
<groupId>hsqldb</groupId>
|
||||||
@ -121,7 +121,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.hadoop</groupId>
|
<groupId>org.apache.hadoop</groupId>
|
||||||
<artifactId>avro</artifactId>
|
<artifactId>avro</artifactId>
|
||||||
<version>1.3.0</version>
|
<version>1.3.2</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<!-- Don't pull in Avro's (later) version of Jetty.-->
|
||||||
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
|
<artifactId>jetty</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<!-- Exclude Avro's version of ant since it conflicts with Jetty's.-->
|
||||||
|
<groupId>org.apache.ant</groupId>
|
||||||
|
<artifactId>ant</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-httpclient</groupId>
|
<groupId>commons-httpclient</groupId>
|
||||||
<artifactId>commons-httpclient</artifactId>
|
<artifactId>commons-httpclient</artifactId>
|
||||||
<version>3.0.1</version>
|
<version>3.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-codec</groupId>
|
<groupId>commons-codec</groupId>
|
||||||
@ -106,7 +106,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
<artifactId>junit</artifactId>
|
<artifactId>junit</artifactId>
|
||||||
<version>4.5</version>
|
<version>4.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>hsqldb</groupId>
|
<groupId>hsqldb</groupId>
|
||||||
@ -121,7 +121,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.hadoop</groupId>
|
<groupId>org.apache.hadoop</groupId>
|
||||||
<artifactId>avro</artifactId>
|
<artifactId>avro</artifactId>
|
||||||
<version>1.3.0</version>
|
<version>1.3.2</version>
|
||||||
|
<exclusions>
|
||||||
|
<exclusion>
|
||||||
|
<!-- Don't pull in Avro's (later) version of Jetty.-->
|
||||||
|
<groupId>org.mortbay.jetty</groupId>
|
||||||
|
<artifactId>jetty</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
<exclusion>
|
||||||
|
<!-- Exclude Avro's version of ant since it conflicts with Jetty's.-->
|
||||||
|
<groupId>org.apache.ant</groupId>
|
||||||
|
<artifactId>ant</artifactId>
|
||||||
|
</exclusion>
|
||||||
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#It drives ivy and the generation of a maven POM
|
#It drives ivy and the generation of a maven POM
|
||||||
|
|
||||||
#These are the versions of our dependencies (in alphabetical order)
|
#These are the versions of our dependencies (in alphabetical order)
|
||||||
apacheant.version=1.7.1
|
|
||||||
ant-task.version=2.0.10
|
ant-task.version=2.0.10
|
||||||
|
|
||||||
avro.version=1.3.2
|
avro.version=1.3.2
|
||||||
@ -25,8 +24,8 @@ commons-cli.version=1.2
|
|||||||
commons-cli2.version=2.0-mahout
|
commons-cli2.version=2.0-mahout
|
||||||
commons-codec.version=1.4
|
commons-codec.version=1.4
|
||||||
commons-collections.version=3.1
|
commons-collections.version=3.1
|
||||||
commons-httpclient.version=3.0.1
|
commons-httpclient.version=3.1
|
||||||
commons-lang.version=2.4
|
commons-lang.version=2.5
|
||||||
commons-logging.version=1.1.1
|
commons-logging.version=1.1.1
|
||||||
commons-logging-api.version=1.1
|
commons-logging-api.version=1.1
|
||||||
commons-el.version=1.0
|
commons-el.version=1.0
|
||||||
@ -50,7 +49,7 @@ jsp-api.version=5.5.12
|
|||||||
jets3t.version=0.7.1
|
jets3t.version=0.7.1
|
||||||
jetty.version=6.1.14
|
jetty.version=6.1.14
|
||||||
jetty-util.version=6.1.14
|
jetty-util.version=6.1.14
|
||||||
junit.version=4.5
|
junit.version=4.8.1
|
||||||
jdiff.version=1.0.9
|
jdiff.version=1.0.9
|
||||||
json.version=1.0
|
json.version=1.0
|
||||||
|
|
||||||
@ -68,13 +67,13 @@ rats-lib.version=0.6
|
|||||||
servlet.version=4.0.6
|
servlet.version=4.0.6
|
||||||
servlet-api-2.5.version=6.1.14
|
servlet-api-2.5.version=6.1.14
|
||||||
servlet-api.version=2.5
|
servlet-api.version=2.5
|
||||||
slf4j-api.version=1.4.3
|
slf4j-api.version=1.5.11
|
||||||
slf4j-log4j12.version=1.4.3
|
slf4j-log4j12.version=1.5.11
|
||||||
|
|
||||||
xmlenc.version=0.52
|
xmlenc.version=0.52
|
||||||
xerces.version=1.4.4
|
xerces.version=1.4.4
|
||||||
|
|
||||||
aspectj.version=1.6.5
|
aspectj.version=1.6.5
|
||||||
|
|
||||||
mockito-all.version=1.8.0
|
mockito-all.version=1.8.2
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user