Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimone Bordet2014-06-09 11:08:54 +0000
committerSimone Bordet2014-06-09 12:01:16 +0000
commitc1247ff6779c78917598a149d36e773702c490d5 (patch)
tree454a9add46a143330b8798d1852a411133b4ce31 /jetty-http2/pom.xml
parent36081dbcbf64243f1c2098067290e490dc3ec656 (diff)
downloadorg.eclipse.jetty.project-c1247ff6779c78917598a149d36e773702c490d5.tar.gz
org.eclipse.jetty.project-c1247ff6779c78917598a149d36e773702c490d5.tar.xz
org.eclipse.jetty.project-c1247ff6779c78917598a149d36e773702c490d5.zip
Reorganized HTTP2 modules.
Diffstat (limited to 'jetty-http2/pom.xml')
-rw-r--r--jetty-http2/pom.xml71
1 files changed, 16 insertions, 55 deletions
diff --git a/jetty-http2/pom.xml b/jetty-http2/pom.xml
index 9c5d3da7bb..7aadaaaa32 100644
--- a/jetty-http2/pom.xml
+++ b/jetty-http2/pom.xml
@@ -5,40 +5,19 @@
<groupId>org.eclipse.jetty</groupId>
<version>10.0.0-SNAPSHOT</version>
</parent>
+
<modelVersion>4.0.0</modelVersion>
- <artifactId>jetty-http2</artifactId>
- <name>Jetty :: Http2 Utility</name>
- <url>http://www.eclipse.org/jetty</url>
- <properties>
- <bundle-symbolic-name>${project.groupId}.http</bundle-symbolic-name>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-http</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-hpack</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-io</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-util</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.eclipse.jetty.toolchain</groupId>
- <artifactId>jetty-test-helper</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
+ <groupId>org.eclipse.jetty.http2</groupId>
+ <artifactId>http2-parent</artifactId>
+ <packaging>pom</packaging>
+ <name>Jetty :: HTTP2</name>
+
+ <modules>
+ <module>http2-hpack</module>
+ <module>http2-common</module>
+ <module>http2-server</module>
+ </modules>
+
<build>
<plugins>
<plugin>
@@ -52,7 +31,9 @@
</goals>
<configuration>
<instructions>
- <Import-Package>javax.servlet.*;version="[2.6.0,3.2)",javax.net.*,*</Import-Package>
+ <Export-Package>org.eclipse.jetty.http2.*;version="9.1"</Export-Package>
+ <Import-Package>org.eclipse.jetty.*;version="[9.0,10.0)",*</Import-Package>
+ <_nouses>true</_nouses>
</instructions>
</configuration>
</execution>
@@ -61,33 +42,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
- <executions>
- <execution>
- <id>artifact-jar</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- <execution>
- <id>test-jar</id>
- <goals>
- <goal>test-jar</goal>
- </goals>
- </execution>
- </executions>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>findbugs-maven-plugin</artifactId>
- <configuration>
- <onlyAnalyze>org.eclipse.jetty.http.*</onlyAnalyze>
- </configuration>
- </plugin>
</plugins>
</build>
+
</project>

Back to the top