diff options
author | Dan Timoney <dtimoney@att.com> | 2017-09-21 16:07:02 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-09-21 16:23:44 -0400 |
commit | 37d6468cc670045ab4ff1ee23315739a429aa5e3 (patch) | |
tree | 5bfc27601f810a69d2c9442c02b2e6c5f7b392a0 /utils/features/src | |
parent | b98b8dd82639f1a9c0494896f8fc689a5196c523 (diff) |
Install sdnc-core utils as karaf package
New utils jar was added in another change, but wasn't bundled as a karaf
feature and was not being installed in container. This broke odlsli
docker container. This change wraps that util package as a new
feature (sdnc-core-utils).
Change-Id: Ie8c1d608e2c67aa1635837bc400cec942761c81c
Issue-ID: CCSDK-54
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'utils/features/src')
-rwxr-xr-x | utils/features/src/main/resources/features.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/utils/features/src/main/resources/features.xml b/utils/features/src/main/resources/features.xml new file mode 100755 index 00000000..409f8c48 --- /dev/null +++ b/utils/features/src/main/resources/features.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<features name="sdnc-slicore-utils-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0"> + + <repository>mvn:org.opendaylight.mdsal/features-mdsal/${odl.mdsal.features.version}/xml/features</repository> + + + <feature name='sdnc-slicore-utils' description="sdnc-slicore-utils" version='${project.version}'> + <!-- Most applications will have a dependency on the ODL MD-SAL Broker --> + <feature version="${odl.mdsal.version}">odl-mdsal-broker</feature> + <bundle>mvn:org.onap.ccsdk.sli.core/util-provider/${project.version}</bundle> + </feature> + +</features> |