Skip to content

Commit

Permalink
MOSIP-31067 Fixed dependencies version mismatch (#970)
Browse files Browse the repository at this point in the history
Signed-off-by: kameshsr <[email protected]>
  • Loading branch information
kameshsr authored Jan 10, 2024
1 parent 5c4fbcd commit f7c7f6e
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions authentication/authentication-childauthfilter-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
spring-boot-starter-security
</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -75,6 +79,34 @@
<artifactId>authentication-filter-api</artifactId>
<version>${authentication-filter-api.version}</version>
</dependency>
<dependency>
<groupId>io.mosip.kernel</groupId>
<artifactId>kernel-logger-logback</artifactId>
<version>${kernel-logger-logback.version}</version>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>
spring-boot-starter-security
</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<version>${spring.boot.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
Expand Down

0 comments on commit f7c7f6e

Please sign in to comment.