Skip to content

Commit

Permalink
Merge branch 'develop-java21' of https://github.com/mosip/registration
Browse files Browse the repository at this point in the history
…into MOSIP-32461
  • Loading branch information
Sowmya Ujjappa Banakar committed May 27, 2024
2 parents 8e6e649 + 6c65f8f commit 1b88d96
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>
spring-boot-starter-activemq
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
excludeFilters = @Filter(type = FilterType.ASSIGNABLE_TYPE, value = { RegistrationStatusServiceBeanConfig.class,
RestConfigBean.class, KafkaMosipEventBus.class, VertxMosipEventBus.class, StageHealthCheckHandler.class,
MosipVerticleManager.class, MosipVerticleAPIManager.class, MosipEventBus.class,
PropertyLoaderConfig.class }))
PropertyLoaderConfig.class, ActivemqConfigBean.class }))
public class RegistrationStatusApiApplication
{
public static void main( String[] args )
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>
spring-boot-starter-activemq
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"io.mosip.registration.processor.transaction.*", "${mosip.auth.adapter.impl.basepackage}",
"io.mosip.registration.processor.core.kernel.beans" },
excludeFilters = @Filter(type = FilterType.ASSIGNABLE_TYPE, value = { RestConfigBean.class,
PropertyLoaderConfig.class }))
PropertyLoaderConfig.class, ActivemqConfigBean.class }))
public class RegistrationTransactionServiceApplication {

public static void main(String[] args) {
Expand Down

0 comments on commit 1b88d96

Please sign in to comment.