Skip to content

Instantly share code, notes, and snippets.

@steinarb
Created May 17, 2021 19:11
Embed
What would you like to do?
maven-bundle-plugin config from the effective-pom of handlereg.web.frontend
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.2</version>
<executions>
<execution>
<id>bundle</id>
<goals>
<goal>bundle</goal>
</goals>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
<instructions>
<_dsannotations>*</_dsannotations>
<_dsannotations-options>inherit</_dsannotations-options>
<_metatypeannotations>*</_metatypeannotations>
</instructions>
</configuration>
</execution>
</executions>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
<supportedProjectType>bundle</supportedProjectType>
<supportedProjectType>war</supportedProjectType>
</supportedProjectTypes>
<instructions>
<_dsannotations>*</_dsannotations>
<_dsannotations-options>inherit</_dsannotations-options>
<_metatypeannotations>*</_metatypeannotations>
</instructions>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment