Unverified Commit e778b2e0 authored by Jürgen Albert's avatar Jürgen Albert Committed by GitHub
Browse files

Added OSGi Support (#549)

parent 35ac18e1
...@@ -56,6 +56,7 @@ ...@@ -56,6 +56,7 @@
<systemRules.version>1.19.0</systemRules.version> <systemRules.version>1.19.0</systemRules.version>
<changelog-lib.version>1.59</changelog-lib.version> <changelog-lib.version>1.59</changelog-lib.version>
<bnd.version>5.0.1</bnd.version>
<gitlab.version>12.9.2-ce.0</gitlab.version> <gitlab.version>12.9.2-ce.0</gitlab.version>
<gitlab.autoremove-container>true</gitlab.autoremove-container> <gitlab.autoremove-container>true</gitlab.autoremove-container>
...@@ -110,6 +111,18 @@ ...@@ -110,6 +111,18 @@
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>bnd-process</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId> <artifactId>maven-gpg-plugin</artifactId>
...@@ -156,6 +169,16 @@ ...@@ -156,6 +169,16 @@
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
...@@ -348,6 +371,11 @@ ...@@ -348,6 +371,11 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
<version>${bnd.version}</version>
</plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
</build> </build>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment