This is an automated email from the ASF dual-hosted git repository.

zhouquan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hadoop-submarine.git


The following commit(s) were added to refs/heads/master by this push:
     new d3bd5c9  SUBMARINE-218. Update hadoop-3.2 profile to use hadoop 3.2.1.
d3bd5c9 is described below

commit d3bd5c9f322aed6de73d24947573b01290c866b1
Author: Wei-Chiu Chuang <[email protected]>
AuthorDate: Mon Oct 7 19:35:28 2019 -0700

    SUBMARINE-218. Update hadoop-3.2 profile to use hadoop 3.2.1.
    
    ### What is this PR for?
    A few sentences describing the overall goals of the pull request's commits.
    Update hadoop-3.2 profile to use Apache Hadoop 3.2.1 release
    
    Hadoop 3.2.1 updated guava version to 27.0-jre, which is not compatible 
with prior version, so I had to update guava version used too. httpcomponents 
was updated which differs from the one used by Tony, so exclude httpcomponents 
from Tony and use the version (newer in Hadoop 3.2) in Hadoop.
    
    ### What type of PR is it?
    Improvement
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * Open an issue on Jira https://issues.apache.org/jira/browse/SUBMARINE/
    * Put link here, and add [SUBMARINE-*Jira number*] in PR title, eg. 
[SUBMARINE-23]
    
    ### How should this be tested?
    [Travis 
CI](https://travis-ci.org/jojochuang/hadoop-submarine/builds/594904607)
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Wei-Chiu Chuang <[email protected]>
    
    Closes #33 from jojochuang/SUBMARINE-218 and squashes the following commits:
    
    fbc88e4 [Wei-Chiu Chuang] Update guava for Hadoop 3.2.1
    dbabc5e [Wei-Chiu Chuang] SUBMARINE-218. Update hadoop-3.2 profile to use 
hadoop 3.2.1.
---
 pom.xml                                | 3 ++-
 submarine-runtime/tony-runtime/pom.xml | 4 ++++
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e3cc90f..fcbe279 100644
--- a/pom.xml
+++ b/pom.xml
@@ -222,13 +222,14 @@
     <profile>
       <id>hadoop-3.2</id>
       <properties>
-        <hadoop.version>3.2.0</hadoop.version>
+        <hadoop.version>3.2.1</hadoop.version>
         <jaxb-api.version>2.2.11</jaxb-api.version>
         <commons-compress.version>1.18</commons-compress.version>
         <guice-servlet.version>4.0</guice-servlet.version>
         <jackson-annotations.version>2.9.5</jackson-annotations.version>
         <guice.version>4.0</guice.version>
         <zookeeper.version>3.4.13</zookeeper.version>
+        <guava.version>27.0-jre</guava.version>
         <profile-id>hadoop-3.2</profile-id>
       </properties>
       <modules>
diff --git a/submarine-runtime/tony-runtime/pom.xml 
b/submarine-runtime/tony-runtime/pom.xml
index 8096b9b..842ad31 100644
--- a/submarine-runtime/tony-runtime/pom.xml
+++ b/submarine-runtime/tony-runtime/pom.xml
@@ -94,6 +94,10 @@
           <groupId>com.linkedin.azkaban</groupId>
           <artifactId>azkaban-common</artifactId>
         </exclusion>
+        <exclusion>
+          <groupId>org.apache.httpcomponents</groupId>
+          <artifactId>httpclient</artifactId>
+        </exclusion>
       </exclusions>
     </dependency>
     <dependency>

Reply via email to