You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by za...@apache.org on 2020/12/02 16:59:12 UTC

[ignite] branch master updated: [IGNITE-13803] Fixed Scalar test failed due to incorrect Jackson dependency (#8529)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b4e46f3  [IGNITE-13803] Fixed Scalar test failed due to incorrect Jackson dependency (#8529)
b4e46f3 is described below

commit b4e46f3cbd482afc830c8ab06e6b15d6e23481a7
Author: Alexey Zinoviev <za...@gmail.com>
AuthorDate: Wed Dec 2 19:58:52 2020 +0300

    [IGNITE-13803] Fixed Scalar test failed due to incorrect Jackson dependency (#8529)
    
    * [IGNITE-13803] Changed dependency
    
    * [IGNITE-13803] Exclude dependency
---
 examples/pom.xml   |  6 ++++++
 modules/ml/pom.xml | 22 +---------------------
 2 files changed, 7 insertions(+), 21 deletions(-)

diff --git a/examples/pom.xml b/examples/pom.xml
index 08fe50a..25a5b87 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -106,6 +106,12 @@
             <groupId>org.apache.ignite</groupId>
             <artifactId>ignite-ml</artifactId>
             <version>${project.version}</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>com.fasterxml.jackson.core</groupId>
+                    <artifactId>*</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
 
         <dependency>
diff --git a/modules/ml/pom.xml b/modules/ml/pom.xml
index 37d9c10..ad9f8dc 100644
--- a/modules/ml/pom.xml
+++ b/modules/ml/pom.xml
@@ -161,29 +161,9 @@
             <version>1.7.7</version>
         </dependency>
         <dependency>
-            <groupId>javax.xml.bind</groupId>
-            <artifactId>jaxb-api</artifactId>
-            <version>2.3.0</version>
-        </dependency>
-        <dependency>
-            <groupId>com.sun.xml.bind</groupId>
-            <artifactId>jaxb-core</artifactId>
-            <version>2.3.0</version>
-        </dependency>
-        <dependency>
-            <groupId>com.sun.xml.bind</groupId>
-            <artifactId>jaxb-impl</artifactId>
-            <version>2.3.0</version>
-        </dependency>
-        <dependency>
-            <groupId>javax.activation</groupId>
-            <artifactId>activation</artifactId>
-            <version>1.1.1</version>
-        </dependency>
-        <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>2.10.3</version>
+            <version>${jackson.version}</version>
         </dependency>
     </dependencies>