Fixing utils to ignore any wrapping bundle annotations from jar coordinates.

Change-Id: I90d1d7f2c0878d94f75fd5ac0be6cd4ed29da132
diff --git a/runtime/src/main/java/org/onosproject/yang/runtime/helperutils/YangApacheUtils.java b/runtime/src/main/java/org/onosproject/yang/runtime/helperutils/YangApacheUtils.java
index e097a74..edefc76 100644
--- a/runtime/src/main/java/org/onosproject/yang/runtime/helperutils/YangApacheUtils.java
+++ b/runtime/src/main/java/org/onosproject/yang/runtime/helperutils/YangApacheUtils.java
@@ -100,7 +100,9 @@
         builder.append(currentDirectory).append(SYSTEM);
         StringBuilder ver = new StringBuilder();
         if (mvnLocationPath.contains(MAVEN)) {
-            String[] strArray = mvnLocationPath.split(MAVEN);
+            String[] strArray = mvnLocationPath
+                    .replaceFirst("\\$Bundle-.*$", "")
+                    .split(MAVEN);
             if (strArray[1].contains(File.separator)) {
                 String[] split = strArray[1].split(File.separator);
                 if (split[0].contains(PERIOD)) {