Skip to content

Instantly share code, notes, and snippets.

@wulfgarpro
Created February 9, 2012 00:40
Show Gist options
  • Save wulfgarpro/1775930 to your computer and use it in GitHub Desktop.
Save wulfgarpro/1775930 to your computer and use it in GitHub Desktop.
Example use of the maven-bundle-plugin for pom.xml
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.5</version>
<executions>
<execution>
<id>wrap-my-dependency</id>
<phase>package</phase>
<goals>
<goal>wrap</goal>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment