Skip to content

Instantly share code, notes, and snippets.

@steinarb
Last active March 20, 2020 17:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steinarb/7d05b866c89e1384b56a4c353be90021 to your computer and use it in GitHub Desktop.
Save steinarb/7d05b866c89e1384b56a4c353be90021 to your computer and use it in GitHub Desktop.
Using maven-bundle-plugin and karaf-maven-plugin in a project with packaging jar
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment