2009-03-24 17:07:27 -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">
|
2024-01-03 04:12:56 -05:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-03-24 17:07:27 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-project</artifactId>
|
2024-06-27 12:16:43 -04:00
|
|
|
<version>10.0.23-SNAPSHOT</version>
|
2009-03-24 17:07:27 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>jetty-servlets</artifactId>
|
|
|
|
<name>Jetty :: Utility Servlets and Filters</name>
|
|
|
|
<description>Utility Servlets from Jetty</description>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2010-03-30 14:45:31 -04:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.servlets</bundle-symbolic-name>
|
2020-12-10 20:47:26 -05:00
|
|
|
<spotbugs.onlyAnalyze>org.eclipse.jetty.servlets.*</spotbugs.onlyAnalyze>
|
2010-03-30 14:45:31 -04:00
|
|
|
</properties>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependencies>
|
2012-10-29 00:53:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-http</artifactId>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-io</artifactId>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
</dependency>
|
2011-11-30 00:27:30 -05:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2011-11-30 00:27:30 -05:00
|
|
|
</dependency>
|
2012-12-16 21:26:10 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<scope>provided</scope>
|
2012-12-16 21:26:10 -05:00
|
|
|
</dependency>
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-servlet-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-jmx</artifactId>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
2024-01-03 04:12:56 -05:00
|
|
|
|
2012-11-13 11:11:46 -05:00
|
|
|
<dependency>
|
2013-02-27 10:23:17 -05:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2024-01-03 04:12:56 -05:00
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
2013-02-27 10:23:17 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-10-29 12:50:32 -04:00
|
|
|
<dependency>
|
2018-11-22 06:37:35 -05:00
|
|
|
<groupId>org.eclipse.jetty.tests</groupId>
|
|
|
|
<artifactId>jetty-http-tools</artifactId>
|
2014-10-29 12:50:32 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-11-13 11:11:46 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-03-24 17:07:27 -04:00
|
|
|
</dependencies>
|
2018-11-22 06:37:35 -05:00
|
|
|
|
2024-01-03 04:12:56 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>@{argLine} ${jetty.surefire.argLine}
|
|
|
|
--add-modules jetty.servlet.api
|
|
|
|
--add-modules org.eclipse.jetty.util
|
|
|
|
--add-modules org.eclipse.jetty.io
|
|
|
|
--add-modules org.eclipse.jetty.http
|
|
|
|
--add-modules org.eclipse.jetty.server
|
|
|
|
--add-modules org.eclipse.jetty.jmx
|
|
|
|
--add-reads org.eclipse.jetty.servlets=java.management
|
|
|
|
--add-reads org.eclipse.jetty.servlets=org.eclipse.jetty.jmx
|
|
|
|
--add-reads org.eclipse.jetty.servlets=org.eclipse.jetty.logging</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2009-03-24 17:07:27 -04:00
|
|
|
</project>
|