2012-02-10 09:38:22 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2012-03-08 22:09:37 -05:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2012-03-07 15:11:28 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-parent</artifactId>
|
2012-03-08 22:09:46 -05:00
|
|
|
<version>7.6.3-SNAPSHOT</version>
|
2012-03-07 15:11:28 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spdy-jetty-http</artifactId>
|
|
|
|
<name>Jetty :: SPDY :: Jetty HTTP Layer</name>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2012-03-07 16:08:05 -05:00
|
|
|
<argLine>-Xbootclasspath/p:${settings.localRepository}/org/mortbay/jetty/npn/npn-boot/${project.version}/npn-boot-${project.version}.jar </argLine>
|
2012-03-07 15:11:28 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
2012-03-07 16:08:05 -05:00
|
|
|
<id>eclipse-release</id>
|
2012-03-07 15:11:28 -05:00
|
|
|
<build>
|
2012-02-24 08:17:47 -05:00
|
|
|
<plugins>
|
2012-03-07 15:11:28 -05:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2012-03-07 16:08:05 -05:00
|
|
|
<skip>true</skip>
|
2012-03-07 15:11:28 -05:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2012-02-24 08:17:47 -05:00
|
|
|
</plugins>
|
2012-03-07 15:11:28 -05:00
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.spdy</groupId>
|
|
|
|
<artifactId>spdy-jetty</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.npn</groupId>
|
|
|
|
<artifactId>npn-api</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>${slf4j-version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|