Skip to content

Commit

Permalink
Merge pull request #69 from LoganathanSekar7627/MOSIP-31845-fix-ida-s…
Browse files Browse the repository at this point in the history
…tartup-issue-due-to-jackson-dependency-related-error

MOSIP-31845 fix ida startup issue due to jackson dependency related error
  • Loading branch information
ckm007 authored Feb 29, 2024
2 parents c7099c3 + b5168d2 commit 5b49aef
Showing 1 changed file with 29 additions and 6 deletions.
35 changes: 29 additions & 6 deletions biosdk-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<maven.surefire.plugin.version>2.22.0</maven.surefire.plugin.version>
<maven.jacoco.plugin.version>0.8.5</maven.jacoco.plugin.version>
<maven.sonar.plugin.version>3.7.0.1746</maven.sonar.plugin.version>

<jackson.version>2.12.1</jackson.version>
<!-- Lombok -->
<lombok.version>1.18.8</lombok.version>

Expand Down Expand Up @@ -84,6 +84,10 @@
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -111,6 +115,10 @@
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -126,11 +134,6 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.11.3</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -179,6 +182,26 @@
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-core</artifactId>
<version>${kernel.core.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 5b49aef

Please sign in to comment.