Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2014-03-19 01:54:04 +0000
committerGreg Wilkins2014-03-19 01:54:04 +0000
commita85b855921a90c99488823fe44f44667a5d2364a (patch)
tree90dd025a6c9831358b459fcde02e2f4355dc44eb /jetty-spdy/spdy-http-client-transport/pom.xml
parente9ecd8c9666ca78e089089427e2b1cfe18937251 (diff)
downloadorg.eclipse.jetty.project-a85b855921a90c99488823fe44f44667a5d2364a.tar.gz
org.eclipse.jetty.project-a85b855921a90c99488823fe44f44667a5d2364a.tar.xz
org.eclipse.jetty.project-a85b855921a90c99488823fe44f44667a5d2364a.zip
Revert ALPN and java 8 changes to move to another branch
Reverts e9ecd8c,2f22a10,addc49f,f4e4b09,cf1c245 Disabled unit test from commit 47e7583
Diffstat (limited to 'jetty-spdy/spdy-http-client-transport/pom.xml')
-rw-r--r--jetty-spdy/spdy-http-client-transport/pom.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/jetty-spdy/spdy-http-client-transport/pom.xml b/jetty-spdy/spdy-http-client-transport/pom.xml
index 61f978a4c5..eb4fef0c14 100644
--- a/jetty-spdy/spdy-http-client-transport/pom.xml
+++ b/jetty-spdy/spdy-http-client-transport/pom.xml
@@ -17,6 +17,36 @@
<build>
<plugins>
<plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <phase>generate-resources</phase>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.mortbay.jetty.npn</groupId>
+ <artifactId>npn-boot</artifactId>
+ <version>${npn.version}</version>
+ <type>jar</type>
+ <overWrite>false</overWrite>
+ <outputDirectory>${project.build.directory}/npn</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <argLine>-Xbootclasspath/p:${project.build.directory}/npn/npn-boot-${npn.version}.jar</argLine>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>

Back to the top