Fix logger constants

The new appc-common-bundle had different exports than the old
appc-common bundle did. This seemed to be causing the logging
constants to not load properly. This puts the exports back to
the way they were before.

Change-Id: I0f3c7e747ad9d45c4169f0da05a2fd01885134d3
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-1207
diff --git a/appc-core/appc-common-bundle/pom.xml b/appc-core/appc-common-bundle/pom.xml
index 07300f5..755fe9c 100644
--- a/appc-core/appc-common-bundle/pom.xml
+++ b/appc-core/appc-common-bundle/pom.xml
@@ -20,7 +20,7 @@
   <modelVersion>4.0.0</modelVersion>

   <parent>

       <groupId>org.onap.appc.parent</groupId>

-      <artifactId>binding-parent</artifactId>        

+      <artifactId>binding-parent</artifactId>

       <version>1.4.0-SNAPSHOT</version>

   </parent>

   

@@ -166,6 +166,20 @@
 	       </dependency>

 	     </dependencies>

 	   </plugin>

+     

+      <plugin>

+        <groupId>org.apache.felix</groupId>

+        <artifactId>maven-bundle-plugin</artifactId>

+        <extensions>true</extensions>

+        <configuration>

+          <instructions>

+            <Bundle-SymbolicName>appc-common-bundle</Bundle-SymbolicName>

+            <Export-Package>org.onap.appc.*, com.att.eelf.*</Export-Package>

+            <Embed-Dependency>eelf-core</Embed-Dependency>

+            <Embed-Transitive>true</Embed-Transitive>

+          </instructions>

+        </configuration>

+      </plugin>

     </plugins>  

   </build>

 </project>