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