diff options
author | Patrick Brady <pb071s@att.com> | 2018-09-21 10:15:49 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-09-21 19:42:23 +0000 |
commit | b1f5afc03a77a57a6e0ff6a315429f254298b425 (patch) | |
tree | 476e3b6792f567eda9b551b23de8b3ef04b4281b | |
parent | 28da5021fad45b2c4da1bd1b7db794863e5ef7f3 (diff) |
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
-rw-r--r-- | appc-core/appc-common-bundle/pom.xml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/appc-core/appc-common-bundle/pom.xml b/appc-core/appc-common-bundle/pom.xml index 07300f53f..755fe9c6b 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>
|