Skip to content

Commit 5450533

Browse files
authored
java: Add OSGi metadata (#344)
1 parent 998bf4e commit 5450533

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
9+
### Added
10+
- [Java] Add OSGi metadata ([#344](https://github.com/cucumber/messages/pull/344))
911

1012
## [30.0.0] - 2025-10-03
1113
### Changed

java/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,19 @@
101101
</configuration>
102102
</plugin>
103103

104+
<plugin>
105+
<groupId>biz.aQute.bnd</groupId>
106+
<artifactId>bnd-maven-plugin</artifactId>
107+
</plugin>
108+
<plugin>
109+
<groupId>org.apache.maven.plugins</groupId>
110+
<artifactId>maven-jar-plugin</artifactId>
111+
<configuration>
112+
<archive>
113+
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
114+
</archive>
115+
</configuration>
116+
</plugin>
104117
<plugin>
105118
<groupId>org.codehaus.mojo</groupId>
106119
<artifactId>build-helper-maven-plugin</artifactId>

0 commit comments

Comments
 (0)