diff options
author | shaaban Altanany <shaaban.eltanany.ext@orange.com> | 2020-03-23 14:07:55 +0200 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-03-27 17:01:06 +0000 |
commit | 0e5af945fc7283c9feb2e1326eb50e33e949ffe7 (patch) | |
tree | 84edf298cbcb068e54ae0fc0e79282a9e4144a9e | |
parent | 874cc281b4bade5c8df04b2325473136882d2471 (diff) |
Deactivating spring data jpa from SDCListener
1-Deactivate spring data jpa from health check common project
Issue-ID: CCSDK-1669
Signed-off-by: shaaban Altanany <shaaban.eltanany.ext@orange.com>
Change-Id: Ib59e9b11b948fd584ddc65da560a65328d885501
-rw-r--r-- | ms/sdclistener/application/pom.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ms/sdclistener/application/pom.xml b/ms/sdclistener/application/pom.xml index 72f552cdd..f65652dc4 100644 --- a/ms/sdclistener/application/pom.xml +++ b/ms/sdclistener/application/pom.xml @@ -57,6 +57,12 @@ <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId> <artifactId>health-api-common</artifactId> <version>0.7.0-SNAPSHOT</version> + <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + </exclusion> + </exclusions> </dependency> <!-- SDC Distribution client dependency --> |