Skip to content

Commit

Permalink
ESAPI#661 Added ability to generate OSGi metadata with the command 'm…
Browse files Browse the repository at this point in the history
…vn org.apache.felix:maven-bundle-plugin:manifest'.
  • Loading branch information
xeno6696 committed Feb 23, 2022
1 parent a3967b6 commit 9fa2a53
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,27 @@
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<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>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>

Expand Down

0 comments on commit 9fa2a53

Please sign in to comment.