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

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


The following commit(s) were added to refs/heads/master by this push:
     new 504e28f  SUBMARINE-391. Submarine build failed for jackson-databind 
version conflicts with hadoop 3.1
504e28f is described below

commit 504e28fe1acd7a4497e91a324a4f56f7e287853e
Author: Liu Shaohui <[email protected]>
AuthorDate: Tue Feb 25 20:18:55 2020 +0800

    SUBMARINE-391. Submarine build failed for jackson-databind version 
conflicts with hadoop 3.1
    
    ### What is this PR for?
    Submarine build failed for jackson-databind version conflicts with hadoop 
3.1
    
    ### What type of PR is it?
    [Bug Fix]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    https://issues.apache.org/jira/browse/SUBMARINE-391
    
    ### How should this be tested?
    https://travis-ci.org/lshmouse/submarine/jobs/654886926
    
    ### 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: Liu Shaohui <[email protected]>
    
    Closes #189 from lshmouse/SUBMARINE-391 and squashes the following commits:
    
    382daea [Liu Shaohui] SUBMARINE-391. Submarine build failed for 
jackson-databind version conflicts with hadoop 3.1
---
 submarine-server/server-submitter/submitter-yarn/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/submarine-server/server-submitter/submitter-yarn/pom.xml 
b/submarine-server/server-submitter/submitter-yarn/pom.xml
index 296f9fe..e92d357 100644
--- a/submarine-server/server-submitter/submitter-yarn/pom.xml
+++ b/submarine-server/server-submitter/submitter-yarn/pom.xml
@@ -290,6 +290,12 @@
           <artifactId>hadoop-hdfs-client</artifactId>
           <version>${hadoop.version}</version>
           <scope>compile</scope>
+          <exclusions>
+            <exclusion>
+              <groupId>com.fasterxml.jackson.core</groupId>
+              <artifactId>jackson-databind</artifactId>
+            </exclusion>
+          </exclusions>
         </dependency>
       </dependencies>
     </profile>
@@ -302,6 +308,12 @@
           <artifactId>hadoop-hdfs-client</artifactId>
           <version>${hadoop.version}</version>
           <scope>compile</scope>
+          <exclusions>
+            <exclusion>
+              <groupId>com.fasterxml.jackson.core</groupId>
+              <artifactId>jackson-databind</artifactId>
+            </exclusion>
+          </exclusions>
         </dependency>
       </dependencies>
     </profile>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to