From 25af210af181f4fb6b68c09ae33dfb984b0ed46a Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Wed, 24 Aug 2016 10:17:38 -0400 Subject: [PATCH] Bug 6521: Fix ClassNotFoundException in sal-remoterpc-connector Introduced by https://git.opendaylight.org/gerrit/#/c/44553/. The generated yang files were importing org.opendaylight.controller.cluster. Now that the yang has been removed we need to explicitly import the package into the bundle. Change-Id: I049751f08f26bdceed1a6e8c2af7be940d92c591 Signed-off-by: Tom Pantelis --- opendaylight/md-sal/sal-remoterpc-connector/pom.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/opendaylight/md-sal/sal-remoterpc-connector/pom.xml b/opendaylight/md-sal/sal-remoterpc-connector/pom.xml index 68bbb63b28..2bb9cdb0bc 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/pom.xml +++ b/opendaylight/md-sal/sal-remoterpc-connector/pom.xml @@ -194,7 +194,17 @@ ${project.groupId}.${project.artifactId} - !org.iq80.*;!*snappy;!org.jboss.*;!com.jcraft.*;!org.fusesource.*;!*jetty*;!sun.security.*;* + + !org.iq80.*; + !*snappy; + !org.jboss.*; + !com.jcraft.*; + !org.fusesource.*; + !*jetty*; + !sun.security.*; + org.opendaylight.controller.cluster; + * +