From a54af3e7b27bc15d051064ba7990121ac7d27eea Mon Sep 17 00:00:00 2001 From: Dan Timoney Date: Wed, 6 Sep 2017 19:14:51 -0400 Subject: Fix resource-assignment dependencies Resource-assignment was not loading due to unresolved dependencies. This turned out to be due to a few issues, addressed by this change: - commons-lang had to be added as a bundle in features.xml - package name for DbLibService in spring config was wrong, preventing spring from initializing properly - DbLibService's package (org.onap.ccsdk.sli.core.dblib) was not detected properly by felix maven plugin and was missing from Import-Package in MANIFEST. Resolved by explicitly adding that package in felix plugin config in provider pom.xml Change-Id: I6ebb82ebae0e96b4ab9592e29f6a7a1d2276aa69 Issue-ID: CCSDK-79 Signed-off-by: Dan Timoney --- .../resources/META-INF/spring/resource-assignment-osgi-context.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'resource-assignment/provider/src') diff --git a/resource-assignment/provider/src/main/resources/META-INF/spring/resource-assignment-osgi-context.xml b/resource-assignment/provider/src/main/resources/META-INF/spring/resource-assignment-osgi-context.xml index 7fe54437..be22d876 100644 --- a/resource-assignment/provider/src/main/resources/META-INF/spring/resource-assignment-osgi-context.xml +++ b/resource-assignment/provider/src/main/resources/META-INF/spring/resource-assignment-osgi-context.xml @@ -9,9 +9,9 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - + http://www.apache.org/licenses/LICENSE-2.0 - + Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -30,7 +30,7 @@ javax.sql.DataSource - org.onap.ccsdk.sli.adaptors.resource.dblib.DbLibService + org.onap.ccsdk.sli.core.dblib.DbLibService -- cgit 1.2.3-korg