From e2b2138f05e9eaf3eb89f9a65859433cf79b9960 Mon Sep 17 00:00:00 2001 From: Alexis de Talhouët Date: Tue, 21 Aug 2018 11:29:49 -0400 Subject: Fix packaging of netbox-client MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The script previously used packaged the netbox-client with *-mvnrepo_zip.zip which is not what ccsdk-distribbution/odlsli is expecting, as the classifier should be repo. Also, using the *-osgi artifact is actually not helping satisfying OSGi as it's causing wiring issues. Instead, we used the plain jar instead of the bundle, and it seems to fix the issue, as those jar gets already populated in the classpath. Change-Id: If1f3c3d384c2ee42b7f747fbacc46415bacf5f6e Issue-ID: CCSDK-462 Signed-off-by: Alexis de Talhouët --- netbox-client/provider/pom.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'netbox-client/provider/pom.xml') diff --git a/netbox-client/provider/pom.xml b/netbox-client/provider/pom.xml index 16695f20b..2ffcaea9a 100644 --- a/netbox-client/provider/pom.xml +++ b/netbox-client/provider/pom.xml @@ -34,6 +34,7 @@ ccsdk-sli-adaptors :: netbox-client :: ${project.artifactId} + com.google.code.gson gson @@ -41,18 +42,18 @@ org.apache.httpcomponents - httpclient-osgi - ${apache.httpcomponents.client.version} + httpcore + ${apache.httpcomponents.core.version} org.apache.httpcomponents - httpasyncclient-osgi - 4.1.3 + httpclient + ${apache.httpcomponents.client.version} org.apache.httpcomponents - httpcore-osgi - ${apache.httpcomponents.core.version} + httpasyncclient + 4.1.1 org.slf4j -- cgit 1.2.3-korg