2023-10-11 21:51:36 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2019-06-24 11:42:39 -04: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">
|
2023-10-11 21:51:36 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2012-07-13 08:55:40 -04:00
|
|
|
<parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9</artifactId>
|
2024-04-26 08:42:57 -04:00
|
|
|
<version>12.1.0-SNAPSHOT</version>
|
2012-07-13 08:55:40 -04:00
|
|
|
</parent>
|
2022-05-03 09:50:54 -04:00
|
|
|
<artifactId>jetty-ee9-proxy</artifactId>
|
2023-01-27 13:09:06 -05:00
|
|
|
<name>EE9 :: Proxy</name>
|
2012-07-13 08:55:40 -04:00
|
|
|
<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>
|
2023-06-19 20:54:16 -04:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.ee9.proxy.*</spotbugs.onlyAnalyze>
|
2012-07-13 08:55:40 -04:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2020-02-24 14:20:51 -05:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-client</artifactId>
|
2020-02-24 14:20:51 -05:00
|
|
|
</dependency>
|
2012-07-13 08:55:40 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2012-07-13 08:55:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty.ee9</groupId>
|
|
|
|
<artifactId>jetty-ee9-servlet</artifactId>
|
2012-07-13 08:55:40 -04:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2015-04-09 09:15:27 -04:00
|
|
|
<dependency>
|
2023-10-11 21:51:36 -04:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
2012-07-13 08:55:40 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
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>
|
2022-05-03 09:50:54 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-rewrite</artifactId>
|
2016-06-13 11:55:03 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-09-23 01:37:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2023-10-11 21:51:36 -04:00
|
|
|
<artifactId>jetty-util-ajax</artifactId>
|
2021-09-23 01:37:35 -04:00
|
|
|
<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>
|
2023-10-11 21:51:36 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>@{argLine} ${jetty.surefire.argLine}
|
|
|
|
--add-reads org.eclipse.jetty.ee9.proxy=org.eclipse.jetty.logging</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2012-07-13 08:55:40 -04:00
|
|
|
</project>
|