Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2015-02-11 23:31:36 +0000
committerJan Bartel2015-02-11 23:32:16 +0000
commitb45389ad8705ae9cacad2149df9d60d229e2ef2a (patch)
tree8bc1a1cded44fabe4ee340f1bf9adc1c70ad7faf /jetty-http2/http2-common/pom.xml
parent20fa13605c56cf7ad62bd682240afc180bb77a32 (diff)
downloadorg.eclipse.jetty.project-b45389ad8705ae9cacad2149df9d60d229e2ef2a.tar.gz
org.eclipse.jetty.project-b45389ad8705ae9cacad2149df9d60d229e2ef2a.tar.xz
org.eclipse.jetty.project-b45389ad8705ae9cacad2149df9d60d229e2ef2a.zip
Fix http2 osgi manifests and tests
Diffstat (limited to 'jetty-http2/http2-common/pom.xml')
-rw-r--r--jetty-http2/http2-common/pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/jetty-http2/http2-common/pom.xml b/jetty-http2/http2-common/pom.xml
index f0b727025e..7613456f35 100644
--- a/jetty-http2/http2-common/pom.xml
+++ b/jetty-http2/http2-common/pom.xml
@@ -28,6 +28,25 @@
</properties>
<build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <executions>
+ <execution>
+ <goals>
+ <goal>manifest</goal>
+ </goals>
+ <configuration>
+ <instructions>
+ <Export-Package>org.eclipse.jetty.http2.*;version="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}";</Export-Package>
+ </instructions>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
</build>
</project>

Back to the top