Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-08-15 09:35:49 +0000
committerGreg Wilkins2014-08-15 09:35:49 +0000
commitb47f9ef60522ad435d516741646e8e9acf2a6302 (patch)
tree0d372a27c44fdda26d4a668b15c32b514853fd7e /jetty-http2/http2-common/pom.xml
parent48b1f9f3f1e472588b1f4118e8fda101bfe3a1c8 (diff)
downloadorg.eclipse.jetty.project-b47f9ef60522ad435d516741646e8e9acf2a6302.tar.gz
org.eclipse.jetty.project-b47f9ef60522ad435d516741646e8e9acf2a6302.tar.xz
org.eclipse.jetty.project-b47f9ef60522ad435d516741646e8e9acf2a6302.zip
cleaned up OSGi manifest creation
Diffstat (limited to 'jetty-http2/http2-common/pom.xml')
-rw-r--r--jetty-http2/http2-common/pom.xml32
1 files changed, 4 insertions, 28 deletions
diff --git a/jetty-http2/http2-common/pom.xml b/jetty-http2/http2-common/pom.xml
index 2a8baffa5c..f0b727025e 100644
--- a/jetty-http2/http2-common/pom.xml
+++ b/jetty-http2/http2-common/pom.xml
@@ -23,35 +23,11 @@
</dependency>
</dependencies>
+ <properties>
+ <bundle-symbolic-name>${project.groupId}.common</bundle-symbolic-name>
+ </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>
- <Import-Package>javax.servlet.*;version="[2.6.0,3.2)",javax.net.*,*</Import-Package>
- </instructions>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- </plugins>
</build>
</project>

Back to the top