2013-09-06 17:14:53 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-04-02 11:55:21 -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/xsd/maven-4.0.0.xsd">
|
2015-02-18 22:07:42 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
|
|
|
<artifactId>fcgi-parent</artifactId>
|
2023-04-11 14:37:23 -04:00
|
|
|
<version>11.0.15</version>
|
2015-02-10 22:20:06 -05:00
|
|
|
</parent>
|
2013-09-06 17:14:53 -04:00
|
|
|
|
2015-02-10 22:20:06 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>fcgi-server</artifactId>
|
|
|
|
<name>Jetty :: FastCGI :: Server</name>
|
2013-09-06 17:14:53 -04:00
|
|
|
|
2015-02-10 22:20:06 -05:00
|
|
|
<properties>
|
|
|
|
<bundle-symbolic-name>${project.groupId}.server</bundle-symbolic-name>
|
|
|
|
</properties>
|
2014-03-13 11:30:02 -04:00
|
|
|
|
2023-02-01 23:15:39 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<argLine>
|
|
|
|
@{argLine} ${jetty.surefire.argLine}
|
|
|
|
--add-reads org.eclipse.jetty.fcgi.server=org.eclipse.jetty.logging
|
|
|
|
</argLine>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2015-02-10 22:20:06 -05:00
|
|
|
<dependencies>
|
2020-02-24 14:20:51 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
<dependency>
|
2018-11-29 10:51:29 -05:00
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
2020-03-04 04:25:48 -05:00
|
|
|
<artifactId>jetty-jakarta-servlet-api</artifactId>
|
2019-02-08 11:30:27 -05:00
|
|
|
<optional>true</optional>
|
2015-02-10 22:20:06 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
|
|
|
<artifactId>fcgi-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
</dependency>
|
2020-04-01 09:15:45 -04:00
|
|
|
|
2020-02-18 11:40:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-slf4j-impl</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
2020-04-04 05:54:17 -04:00
|
|
|
<artifactId>jetty-alpn-java-server</artifactId>
|
2015-02-10 22:20:06 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-08-05 04:04:37 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-unixdomain-server</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
</dependencies>
|
2013-09-06 17:14:53 -04:00
|
|
|
</project>
|