Skip to content

Commit 7212b01

Browse files
jansupolsenivam
authored andcommitted
Add OSGi headers to MP Config module
Signed-off-by: jansupol <[email protected]>
1 parent 1fe6b75 commit 7212b01

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

ext/microprofile/mp-config/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,27 @@
8383
</dependency>
8484

8585
</dependencies>
86+
<build>
87+
<plugins>
88+
<plugin>
89+
<groupId>org.apache.felix</groupId>
90+
<artifactId>maven-bundle-plugin</artifactId>
91+
<inherited>true</inherited>
92+
<extensions>true</extensions>
93+
<configuration>
94+
<instructions>
95+
<Export-Package>
96+
org.glassfish.jersey.microprofile.config.*;version=${project.version}
97+
</Export-Package>
98+
<Import-Package>
99+
org.eclipse.microprofile.config.*;version="!",
100+
*
101+
</Import-Package>
102+
</instructions>
103+
<unpackBundle>true</unpackBundle>
104+
</configuration>
105+
</plugin>
106+
</plugins>
107+
</build>
86108

87109
</project>

0 commit comments

Comments
 (0)