You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by di...@apache.org on 2021/09/07 07:05:08 UTC

[airavata-mft] branch develop updated: Fixing dependency conflict issue in Agent

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

dimuthuupe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git


The following commit(s) were added to refs/heads/develop by this push:
     new 5e7f20c  Fixing dependency conflict issue in Agent
5e7f20c is described below

commit 5e7f20cdb6eb53f8e40f6b73103186dee34aec91
Author: Dimuthu Wannipurage <di...@gmail.com>
AuthorDate: Tue Sep 7 03:04:51 2021 -0400

    Fixing dependency conflict issue in Agent
---
 agent/pom.xml | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/agent/pom.xml b/agent/pom.xml
index 7b333f3..b7a2ce2 100644
--- a/agent/pom.xml
+++ b/agent/pom.xml
@@ -37,6 +37,12 @@
             <groupId>org.apache.airavata</groupId>
             <artifactId>mft-scp-transport</artifactId>
             <version>0.01-SNAPSHOT</version>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.apache.custos</groupId>
+                    <artifactId>custos-java-sdk</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>org.apache.airavata</groupId>
@@ -96,12 +102,17 @@
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-core</artifactId>
-            <version>2.12.3</version>
+            <version>2.10.0</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>2.12.3</version>
+            <version>2.10.0</version>
+        </dependency>
+        <dependency>
+            <groupId>com.fasterxml.jackson.dataformat</groupId>
+            <artifactId>jackson-dataformat-xml</artifactId>
+            <version>2.10.0</version>
         </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>