2018-11-22 06:37:35 -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/maven-v4_0_0.xsd">
|
2012-07-13 08:55:40 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-11-23 00:25:31 -05:00
|
|
|
<artifactId>jetty-project</artifactId>
|
2016-04-29 14:47:15 -04:00
|
|
|
<version>10.0.0-SNAPSHOT</version>
|
2012-07-13 08:55:40 -04:00
|
|
|
</parent>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2012-07-13 08:55:40 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
|
|
|
<name>Jetty :: Proxy</name>
|
|
|
|
<description>Jetty Proxy</description>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2012-07-13 08:55:40 -04:00
|
|
|
<properties>
|
2012-11-23 00:25:31 -05:00
|
|
|
<bundle-symbolic-name>${project.groupId}.proxy</bundle-symbolic-name>
|
2012-07-13 08:55:40 -04:00
|
|
|
</properties>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2012-07-13 08:55:40 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
2012-11-23 00:25:31 -05:00
|
|
|
<onlyAnalyze>org.eclipse.jetty.proxy.*</onlyAnalyze>
|
2012-07-13 08:55:40 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2012-07-13 08:55:40 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-11-29 10:51:29 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
2015-04-09 09:15:27 -04:00
|
|
|
<scope>provided</scope>
|
2012-07-13 08:55:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2012-11-23 00:25:31 -05:00
|
|
|
<artifactId>jetty-servlet</artifactId>
|
2012-07-13 08:55:40 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-04-09 09:15:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2012-07-13 08:55:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2012-07-13 08:55:40 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2015-04-09 09:15:27 -04:00
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
2012-07-13 08:55:40 -04:00
|
|
|
<version>${project.version}</version>
|
2015-04-09 09:15:27 -04:00
|
|
|
<scope>test</scope>
|
2012-07-13 08:55:40 -04:00
|
|
|
</dependency>
|
2016-06-13 11:55:03 -04:00
|
|
|
<dependency>
|
2018-11-22 06:37:35 -05:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
2016-06-13 11:55:03 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-07-13 08:55:40 -04:00
|
|
|
<dependency>
|
2015-04-09 09:15:27 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
2012-07-13 08:55:40 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|