diff options
author | Dan Timoney <dtimoney@att.com> | 2017-10-12 16:01:06 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-10-12 16:08:50 -0400 |
commit | dd3f74074787dfd14e8aec0b48883b780dd8ccba (patch) | |
tree | c84ba953f28e9997d87f8fce055e831392f37014 /vnfapi/features | |
parent | 93a3119b6922b16ad7b3f41e16427c99b5eac371 (diff) |
Fixed vnfapi install issue
Fixed issues with vnfapi install:
- Resolved issue installing vnftools by converting to blueprint
- Resolved issue not finding RPC implementation of vnfapi by fixing
dependency feature vnftools, and by converting vnfapi to blueprint.
The root cause in both cases was probably something wrong with the
provider configuration, but it was simpler (not to mention more
maintainable) to just convert from config to blueprint.
Change-Id: I7010a845687673c932457774f3103834d328ab84
Issue-ID: SDNC-119
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'vnfapi/features')
-rw-r--r-- | vnfapi/features/pom.xml | 7 | ||||
-rw-r--r-- | vnfapi/features/src/main/resources/features.xml | 5 |
2 files changed, 3 insertions, 9 deletions
diff --git a/vnfapi/features/pom.xml b/vnfapi/features/pom.xml index f9a80f08..781328ff 100644 --- a/vnfapi/features/pom.xml +++ b/vnfapi/features/pom.xml @@ -16,12 +16,7 @@ <artifactId>vnfapi-model</artifactId> <version>${project.version}</version> </dependency> - <dependency> - <groupId>org.onap.sdnc.northbound</groupId> - <artifactId>vnfapi-provider</artifactId> - <classifier>config</classifier> - <type>xml</type> - </dependency> + <dependency> <groupId>org.onap.sdnc.northbound</groupId> <artifactId>vnfapi-provider</artifactId> diff --git a/vnfapi/features/src/main/resources/features.xml b/vnfapi/features/src/main/resources/features.xml index 3da86e07..2301d5a9 100644 --- a/vnfapi/features/src/main/resources/features.xml +++ b/vnfapi/features/src/main/resources/features.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. @@ -33,7 +33,6 @@ <feature>sdnc-sli</feature> <bundle>mvn:org.onap.sdnc.northbound/vnfapi-model/${project.version}</bundle> <bundle>mvn:org.onap.sdnc.northbound/vnfapi-provider/${project.version}</bundle> - <configfile finalname="etc/opendaylight/karaf/200-vnfapi-provider.xml">mvn:org.openecomp.sdnc.northbound/vnfapi-provider/${project.version}/xml/config</configfile> </feature> </features> |