Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generate osgi bundle manifest data for jar #248 #249

Merged
merged 3 commits into from
Dec 6, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
generate osgi bundle manifest data for jar #248
  • Loading branch information
mwiede committed Nov 30, 2022
commit c9a585231265eb2ed8024507bef77998e1fbf7cb
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -456,6 +456,7 @@
<manifestEntries>
<Multi-Release>true</Multi-Release>
</manifestEntries>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
@@ -527,6 +528,20 @@
<artifactId>maven-dependency-plugin</artifactId>
<version>3.3.0</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.1</version>
mwiede marked this conversation as resolved.
Show resolved Hide resolved
<executions>
mwiede marked this conversation as resolved.
Show resolved Hide resolved
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
mwiede marked this conversation as resolved.
Show resolved Hide resolved
</executions>
</plugin>
</plugins>
</build>
<profiles>