diff options
Diffstat (limited to 'appc-outbound')
3 files changed, 6 insertions, 1 deletions
diff --git a/appc-outbound/appc-network-inventory-client/features/src/main/resources/features.xml b/appc-outbound/appc-network-inventory-client/features/src/main/resources/features.xml index 0effc0d4c..75f94e53f 100644 --- a/appc-outbound/appc-network-inventory-client/features/src/main/resources/features.xml +++ b/appc-outbound/appc-network-inventory-client/features/src/main/resources/features.xml @@ -39,6 +39,7 @@ <bundle>mvn:commons-collections/commons-collections/3.2.2</bundle> <bundle>wrap:mvn:com.att.eelf/eelf-core/${eelf.version}</bundle> <bundle>mvn:com.sun.jersey/jersey-client/1.17</bundle> + <bundle>mvn:org.yaml/snakeyaml/1.25</bundle> <bundle>mvn:ch.qos.logback/logback-core/${logback.version}</bundle> <bundle>mvn:ch.qos.logback/logback-classic/${logback.version}</bundle> <bundle>mvn:org.onap.appc/appc-config-params-provider/${project.version}</bundle> diff --git a/appc-outbound/appc-network-inventory-client/pom.xml b/appc-outbound/appc-network-inventory-client/pom.xml index c5f98f617..e7ea3a16c 100755 --- a/appc-outbound/appc-network-inventory-client/pom.xml +++ b/appc-outbound/appc-network-inventory-client/pom.xml @@ -41,7 +41,6 @@ <jettison.version>1.3.7</jettison.version> <velocity.version>1.7</velocity.version> <jackson.version>2.3.2</jackson.version> - <snakeyaml.version>1.12</snakeyaml.version> </properties> diff --git a/appc-outbound/appc-network-inventory-client/provider/pom.xml b/appc-outbound/appc-network-inventory-client/provider/pom.xml index d65cf4b0d..18aee6863 100755 --- a/appc-outbound/appc-network-inventory-client/provider/pom.xml +++ b/appc-outbound/appc-network-inventory-client/provider/pom.xml @@ -66,6 +66,11 @@ <scope>provided</scope> </dependency> <dependency> + <groupId>org.jline</groupId> + <artifactId>jline</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> |