Created
May 17, 2021 19:11
-
-
Save steinarb/e170c56b13ac49135859490f02b28421 to your computer and use it in GitHub Desktop.
maven-bundle-plugin config from the effective-pom of handlereg.web.frontend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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