|
241 | 241 | <groupId>org.apache.felix</groupId>
|
242 | 242 | <artifactId>maven-bundle-plugin</artifactId>
|
243 | 243 | <version>${maven-bundle-plugin.version}</version>
|
| 244 | + <configuration> |
| 245 | + <supportIncrementalBuild>true</supportIncrementalBuild> |
| 246 | + <!-- populated by the plugin itself --> |
| 247 | + <instructions> |
| 248 | + <Bundle-SymbolicName>${replacestring;${project.artifactId};-;.}</Bundle-SymbolicName> |
| 249 | + <Bundle-Name>${project.artifactId}</Bundle-Name> |
| 250 | + <Bundle-Vendor>SLF4J.ORG</Bundle-Vendor> |
| 251 | + <_snapshot/> |
| 252 | + <_exportcontents>!META-INF.versions.9,*;-noimport:=true</_exportcontents> |
| 253 | + <Bundle-Description>${project.description}</Bundle-Description> |
| 254 | + <Bundle-DocURL>${project.url}</Bundle-DocURL> |
| 255 | + <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK> |
| 256 | + <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK> |
| 257 | + <Implementation-Version>${project.version}</Implementation-Version> |
| 258 | + <Implementation-Title>${project.artifactId}</Implementation-Title> |
| 259 | + <Multi-Release>true</Multi-Release> |
| 260 | + <_removeheaders>Private-Package,Bundle-SCM, Bundle-Developers, Include-Resource</_removeheaders> |
| 261 | + </instructions> |
| 262 | + </configuration> |
244 | 263 | <executions>
|
245 | 264 | <execution>
|
246 | 265 | <id>bundle-manifest</id>
|
247 | 266 | <phase>process-classes</phase>
|
248 | 267 | <goals>
|
249 | 268 | <goal>manifest</goal>
|
250 | 269 | </goals>
|
251 |
| - <configuration> |
252 |
| - <instructions> |
253 |
| - <!-- populated by the plugin itself --> |
254 |
| - <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version> |
255 |
| - <Bundle-Description>${project.description}</Bundle-Description> |
256 |
| - <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK> |
257 |
| - <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK> |
258 |
| - <Implementation-Version>${project.version}</Implementation-Version> |
259 |
| - <Multi-Release>true</Multi-Release> |
260 |
| - </instructions> |
261 |
| - </configuration> |
262 | 270 | </execution>
|
263 | 271 | </executions>
|
264 | 272 | </plugin>
|
|
0 commit comments