diff options
author | Dan Timoney <dtimoney@att.com> | 2017-09-06 14:28:36 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-09-06 14:28:36 -0400 |
commit | e0c8895854715081c3c5a3917948075db3b4765b (patch) | |
tree | 1b5ab35a00f91e185a0a29f2cf25e3321a74958f /aai-service/features/src/main | |
parent | cf70dde69807ca143fc360cf572b2d6bf887010f (diff) |
Wrong feature name in aai-service features.xml
Even though this is part of CCSDK, the feature names used for CCSDK
in karaf are still following the convention of sdnc-, except for
aai-service. This causes a problem since the install script expects
the feature names to start with sdnc-. So, while it might arguably
be best to change all package names from sdnc-* to ccsdk-* and
update the installer, it is a smaller fix to just change aai-service
to use the sdnc- convention.
Change-Id: I331d1b637ea2d1a0d83f4c5e55392f1137c94a54
Issue-ID: CCSDK-78
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'aai-service/features/src/main')
-rw-r--r-- | aai-service/features/src/main/resources/features.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/aai-service/features/src/main/resources/features.xml b/aai-service/features/src/main/resources/features.xml index bd3d0bc1..4baca838 100644 --- a/aai-service/features/src/main/resources/features.xml +++ b/aai-service/features/src/main/resources/features.xml @@ -19,16 +19,16 @@ --> -<features name="ccsdk-aai-service-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0" +<features name="sdnc-aai-service-${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='ccsdk-aai-service' description="ccsdk-aai-service" version='${project.version}'> + <feature name='sdnc-aai-service' description="sdnc-aai-service" version='${project.version}'> <!-- Most applications will have a dependency on the ODL MD-SAL Broker --> <feature version="${odl.mdsal.version}">odl-mdsal-broker</feature> - <feature>ccsdk-sli</feature> + <feature>sdnc-sli</feature> <bundle>mvn:org.onap.ccsdk.sli.adaptors/aai-service-provider/${project.version}</bundle> <bundle>mvn:com.sun.jersey/jersey-client/${jersey.client.version}</bundle> <bundle>mvn:com.sun.jersey/jersey-core/${jersey.version}</bundle> |