diff options
author | Rashmi Pujar <rashmi.pujar@bell.ca> | 2021-06-01 17:31:43 -0400 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2021-06-04 15:37:55 +0000 |
commit | 654d6abfe338e53471020e25d32a1d88adea132b (patch) | |
tree | fd578b9327a628d61398b1c1b3ba825ad72a8df8 | |
parent | bb6e10070022fdc3053a6749073b82c87fdcbcb0 (diff) |
Upgrade the CDS dependency
The CDS client libraries are now exposed via a different
maven module.
Issue-ID: POLICY-3338
Signed-off-by: Rashmi Pujar <rashmi.pujar@bell.ca>
Change-Id: I9ecfc8852f129dd231b3008fb4c59b2e8b7b673f
(cherry picked from commit 6676c5418523b69ccde0f7ef22b751ea261f2904)
-rw-r--r-- | integration/pom.xml | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index caf99c4e..51951301 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -2,8 +2,8 @@ ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. Modifications Copyright (C) 2018-2021 AT&T. All rights reserved. - Modifications Copyright (C) 2019-2020 Nordix Foundation. - Modifications Copyright (C) 2020 Bell Canada. + Modifications Copyright (C) 2019-2021 Nordix Foundation. + Modifications Copyright (C) 2020-2021 Bell Canada. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -43,7 +43,7 @@ <version.drools>7.33.0.Final</version.drools> <version.jersey>2.33</version.jersey> <version.jackson>2.11.3</version.jackson> - <version.ccsdk>0.4.4</version.ccsdk> + <version.ccsdk>0.7.5</version.ccsdk> <version.swagger>1.6.2</version.swagger> <version.javax.bind>2.3.1</version.javax.bind> <version.javax.json>1.1.4</version.javax.json> @@ -281,11 +281,17 @@ <version>${version.dmaap}</version> </dependency> - <!-- Common Controller SDK --> + <!-- CDS dependencies --> <dependency> - <groupId>org.onap.ccsdk.cds.components</groupId> - <artifactId>proto-definition</artifactId> + <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId> + <artifactId>blueprint-proto</artifactId> <version>${version.ccsdk}</version> + <exclusions> + <exclusion> + <groupId>io.springfox</groupId> + <artifactId>springfox-boot-starter</artifactId> + </exclusion> + </exclusions> </dependency> <!-- AAF Client --> |