-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MOSIP-32460]Migration to develop from develop-java21 #1301
base: develop-java21
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this file deleted? if yes why it is deleted? |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,29 @@ | |
<name>authentication-core</name> | ||
<description>Maven project of MOSIP ID-Authentication Core</description> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
<artifactId>kernel-bom</artifactId> | ||
<version>${kernel.bom.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<scope>provided</scope> | ||
</dependency> | ||
<!-- Kernel Core --> | ||
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove the kernel-core dependency. |
||
<artifactId>kernel-core</artifactId> | ||
<version>${kernel-core.version}</version> | ||
<version>${kernel.core.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.springframework.boot</groupId> | ||
|
@@ -35,8 +52,6 @@ | |
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
|
||
<!-- Commons Codec --> | ||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
|
@@ -61,7 +76,6 @@ | |
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-cache</artifactId> | ||
</dependency> | ||
|
||
<!-- Open Source Fingerprint SDK --> | ||
<dependency> | ||
<groupId>com.machinezoo.sourceafis</groupId> | ||
|
@@ -74,11 +88,10 @@ | |
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>io.mosip.idrepository</groupId> | ||
<artifactId>id-repository-core</artifactId> | ||
<version>${id-repository-core.version}</version> | ||
<version>${id.repository.core.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.mosip.kernel</groupId> | ||
|
@@ -99,7 +112,7 @@ | |
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
<artifactId>kernel-biosdk-provider</artifactId> | ||
<version>${kernel-biosdk-provider.version}</version> | ||
<version>${kernel.biosdk.provider.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.mosip.kernel</groupId> | ||
|
@@ -114,7 +127,7 @@ | |
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
<artifactId>kernel-demographics-api</artifactId> | ||
<version>${kernel-demoapi.version}</version> | ||
<version>${kernel.demoapi.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>com.fasterxml.jackson.core</groupId> | ||
|
@@ -135,12 +148,12 @@ | |
<dependency> | ||
<groupId>org.springdoc</groupId> | ||
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> | ||
<version>${springdoc.version}</version> | ||
<version>${springdoc.openapi.starter.webmvc.ui.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
<artifactId>kernel-logger-logback</artifactId> | ||
<version>${kernel-logger-logback.version}</version> | ||
<version>${kernel.logger.logback.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>org.springframework.boot</groupId> | ||
|
@@ -159,13 +172,13 @@ | |
<artifactId>jackson-databind</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.module</groupId> | ||
<artifactId>jackson-module-afterburner</artifactId> | ||
<groupId>com.fasterxml.jackson.module</groupId> | ||
<artifactId>jackson-module-afterburner</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.mosip.kernel</groupId> | ||
<artifactId>kernel-biometrics-api</artifactId> | ||
<version>${kernel-biometrics-api.version}</version> | ||
<version>${kernel.biometrics.api.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>io.mosip.kernel</groupId> | ||
|
@@ -178,4 +191,4 @@ | |
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
</project> | ||
</project> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why Kernel-core is added as dependency? kernel-bom will include the kernel-core. please remove all the dependency which are getting added thru bom.