diff options
author | Dan Timoney <dtimoney@att.com> | 2020-10-08 13:51:56 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-10-08 17:55:03 +0000 |
commit | 18c3c18c266d5c3812aa55f91c97326b9f699d7f (patch) | |
tree | 7ca307ddd969946697b7a81a6c0ad8850a1a335b | |
parent | a11df4d435c45271d66f1d698053d3bfd4c4f33b (diff) |
Fix dependency sli-provider-base
The dependency sli-provider-base should specify scope as provided so
that the ODL code that generates the feature.xml does not incorrectly
add sli-provider-base and its dependencies. Doing so causes an
incorrect entry for tomcat-jdbc, missing the option needed to locate
the mariadb jdbc driver.
Issue-ID: SDNC-1373
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: I111512d9f45bba66b61f16392e506ab422cfe543
-rw-r--r-- | sdnr/northbound/ranSlice/provider/pom.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sdnr/northbound/ranSlice/provider/pom.xml b/sdnr/northbound/ranSlice/provider/pom.xml index a945d9153..454fdfda8 100644 --- a/sdnr/northbound/ranSlice/provider/pom.xml +++ b/sdnr/northbound/ranSlice/provider/pom.xml @@ -131,6 +131,7 @@ <groupId>org.onap.ccsdk.sli.core</groupId> <artifactId>sli-provider-base</artifactId> <version>${ccsdk.sli.core.version}</version> + <scope>provided</scope> </dependency> </dependencies> |