http-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>http-server</artifactId>
<version>3.28</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>http-server</artifactId>
<packaging>jar</packaging>
<name>http-server</name>
<parent>
<groupId>com.proofpoint.platform</groupId>
<artifactId>platform</artifactId>
<version>3.28</version>
</parent>
<dependencies>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>log</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>bootstrap</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>configuration</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>units</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>trace-token</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>discovery</artifactId>
<exclusions>
<!-- only the announcement interface is used, not the client -->
<exclusion>
<groupId>com.proofpoint.platform</groupId>
<artifactId>http-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>node</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>json</artifactId>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>stats</artifactId>
</dependency>
<dependency>
<groupId>jakarta.inject</groupId>
<artifactId>jakarta.inject-api</artifactId>
</dependency>
<dependency>
<groupId>org.weakref</groupId>
<artifactId>jmxutils</artifactId>
</dependency>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-http</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-io</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-alpn-java-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.http2</groupId>
<artifactId>jetty-http2-server</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jmx</artifactId>
</dependency>
<!-- for testing -->
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.proofpoint.platform</groupId>
<artifactId>http-client</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>