Skip to content

Commit

Permalink
[6.0] CC-3543: Update Hadoop and Hive versions (#123)
Browse files Browse the repository at this point in the history
* CC-3543: Update Hadoop and Hive versions

* Don't warn about annotation processing

* Explicitly include working version of xml-apis
  • Loading branch information
ncliang authored Feb 28, 2020
1 parent bc2667e commit 286b9b8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions hive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
<properties>
<commons.lang3.version>3.1</commons.lang3.version>
<kryo.version>2.22</kryo.version>
<xml-apis.version>1.4.01</xml-apis.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -64,8 +65,18 @@
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
</exclusion>
<exclusion>
<groupId>jdk.tools</groupId>
<artifactId>jdk.tools</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Explicitly include working version of xml-apis -->
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>${xml-apis.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-exec</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@
<commons-io.version>2.4</commons-io.version>
<confluent.maven.repo>http://packages.confluent.io/maven/</confluent.maven.repo>
<confluent.version>6.0.0-SNAPSHOT</confluent.version>
<hadoop.version>2.7.3</hadoop.version>
<hive.version>1.2.2</hive.version>
<hadoop.version>2.10.0</hadoop.version>
<hive.version>2.3.6</hive.version>
<joda.version>2.9.6</joda.version>
<licenses.version>6.0.0-SNAPSHOT</licenses.version>
<parquet.version>1.10.1</parquet.version>
Expand Down Expand Up @@ -174,7 +174,7 @@
<configuration>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all</arg>
<arg>-Xlint:-processing</arg>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
Expand Down

0 comments on commit 286b9b8

Please sign in to comment.