Skip to content

Commit

Permalink
Add OSGi Maven Bundle plugin
Browse files Browse the repository at this point in the history
Rel #42
  • Loading branch information
nobeh committed Aug 1, 2015
1 parent b8fd655 commit 6287b2c
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.abs-api>0.8.7</version.abs-api>
<version.abs-api>0.8.8</version.abs-api>
<version.airline>0.7</version.airline>
<version.jabsc-maven-plugin>0.1.0</version.jabsc-maven-plugin>
<version.junit>4.12</version.junit>
Expand All @@ -48,6 +48,20 @@
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>jabsc,jabsc.cli</Export-Package>
</instructions>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
Expand All @@ -57,6 +71,15 @@
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
Expand Down

0 comments on commit 6287b2c

Please sign in to comment.