Skip to content

Commit 1ff2a10

Browse files
committed
HADOOP-9976. Different versions of avro and avro-maven-plugin (Karthik Kambatla via Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1526668 13f79535-47bb-0310-9956-ffa450edef68
1 parent 66aa00d commit 1ff2a10

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

hadoop-common-project/hadoop-common/CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ Release 2.1.2 - UNRELEASED
110110
HADOOP-9948. Add a config value to CLITestHelper to skip tests on Windows.
111111
(Chuan Liu via cnauroth)
112112

113+
HADOOP-9976. Different versions of avro and avro-maven-plugin (Karthik
114+
Kambatla via Sandy Ryza)
115+
113116
OPTIMIZATIONS
114117

115118
BUG FIXES

hadoop-project/pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@
5959
<hadoop.common.build.dir>${basedir}/../../hadoop-common-project/hadoop-common/target</hadoop.common.build.dir>
6060
<java.security.egd>file:///dev/urandom</java.security.egd>
6161

62+
<!-- avro version -->
63+
<avro.version>1.7.4</avro.version>
64+
6265
<!-- jersey version -->
6366
<jersey.version>1.9</jersey.version>
6467

@@ -629,7 +632,7 @@
629632
<dependency>
630633
<groupId>org.apache.avro</groupId>
631634
<artifactId>avro</artifactId>
632-
<version>1.7.4</version>
635+
<version>${avro.version}</version>
633636
</dependency>
634637
<dependency>
635638
<groupId>net.sf.kosmosfs</groupId>
@@ -797,7 +800,7 @@
797800
<plugin>
798801
<groupId>org.apache.avro</groupId>
799802
<artifactId>avro-maven-plugin</artifactId>
800-
<version>1.5.3</version>
803+
<version>${avro.version}</version>
801804
</plugin>
802805
<plugin>
803806
<groupId>org.codehaus.mojo.jspc</groupId>

0 commit comments

Comments
 (0)