Skip to content

Commit

Permalink
MOSIP-32842 Fix startup issue
Browse files Browse the repository at this point in the history
Signed-off-by: kameshsr <[email protected]>
  • Loading branch information
kameshsr committed May 13, 2024
1 parent dd99889 commit f3917bf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ openapi.info.license.url=https://docs.mosip.io/platform/license
mosipbox.public.url=http://localhost:9109
openapi.partnerManagementService.servers[0].url=${mosipbox.public.url}/v1/partnermanager
openapi.partnerManagementService.servers[0].description= Partner Management Service

Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Lazy;
import org.springframework.util.AntPathMatcher;

@Configuration
public class AntPathMatcherConfig {
@Bean
@Lazy
public AntPathMatcher antPathMatcher(AntPathMatcher antPathMatcher) {
public AntPathMatcher antPathMatcher() {
return new AntPathMatcher();
}
}
9 changes: 5 additions & 4 deletions partner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,6 @@
</modules>

<dependencies>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
Expand Down Expand Up @@ -143,6 +139,11 @@
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.5.0</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
Expand Down

0 comments on commit f3917bf

Please sign in to comment.