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>
|
2020-07-10 01:14:33 -04:00
|
|
|
<version>10.0.0.beta1</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
|
|
|
|
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>
|
|
|
|
<artifactId>jetty-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>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-proxy</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</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>
|
2020-03-20 12:12:08 -04:00
|
|
|
<scope>test</scope>
|
2020-02-18 11:40:20 -05:00
|
|
|
</dependency>
|
2015-02-10 22:20:06 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-servlet</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.http2</groupId>
|
|
|
|
<artifactId>http2-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<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
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-09-06 17:14:53 -04:00
|
|
|
</project>
|