Skip to content

Commit

Permalink
Update SyncDataBootApplication.java (mosip#1020)
Browse files Browse the repository at this point in the history
Signed-off-by: GOKULRAJ136 <[email protected]>
  • Loading branch information
GOKULRAJ136 authored Jul 11, 2024
1 parent abb99fb commit 5218b83
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package io.mosip.kernel.syncdata;

import io.mosip.kernel.keymanagerservice.validator.ECKeyPairGenRequestValidator;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand All @@ -11,7 +10,6 @@
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.FilterType;
import org.springframework.context.annotation.Import;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;

Expand All @@ -28,10 +26,10 @@
"io.mosip.kernel.keymanagerservice.helper", "io.mosip.kernel.keymanager",
"io.mosip.kernel.cryptomanager.util", "io.mosip.kernel.partnercertservice.helper",
"io.mosip.kernel.partnercertservice.service", "io.mosip.kernel.websub.api.client",
"io.mosip.kernel.keygenerator.bouncycastle", "io.mosip.kernel.websub.api.config" },
"io.mosip.kernel.keygenerator.bouncycastle", "io.mosip.kernel.websub.api.config",
"io.mosip.kernel.keymanagerservice.validator" },
excludeFilters = {@ComponentScan.Filter(
type = FilterType.ASPECTJ, pattern = {"io.mosip.kernel.signature.*"})})
@Import(value = {ECKeyPairGenRequestValidator.class})
@EnableAsync
@EnableScheduling
@EnableCaching
Expand Down

0 comments on commit 5218b83

Please sign in to comment.