diff options
author | Dan Timoney <dtimoney@att.com> | 2021-12-08 16:18:41 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-12-08 16:18:41 -0500 |
commit | b056353185760a887d4555c315e094436aaf0050 (patch) | |
tree | 87ed713ccc601b332b54c3e894757b46a6581058 | |
parent | aaa08cf82273e14afbbf81462783dd6ee3d337c6 (diff) |
Fix dependency scope1.2.5
References to pre-installed ccsdk components should be declared
as scope 'provided' to avoid issue with dependency version in
generated OSGi feature.xml file
Issue-ID: SDNC-1640
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I2fa535a497a32cac08881a86ba719eaaf6fbd01e
-rw-r--r-- | a1-adapter/a1-adapter-api/provider/pom.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/a1-adapter/a1-adapter-api/provider/pom.xml b/a1-adapter/a1-adapter-api/provider/pom.xml index a10a0916..509757d2 100644 --- a/a1-adapter/a1-adapter-api/provider/pom.xml +++ b/a1-adapter/a1-adapter-api/provider/pom.xml @@ -105,6 +105,7 @@ <dependency> <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>utils-provider</artifactId> + <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> |