http-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.facebook.airlift</groupId> <artifactId>http-server</artifactId> <version>0.219</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.facebook.airlift</groupId> <artifactId>airlift</artifactId> <version>0.219</version> </parent> <properties> <air.main.basedir>${project.parent.basedir}</air.main.basedir> <project.build.targetJdk>17</project.build.targetJdk> </properties> <dependencies> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>log</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>configuration</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>units</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>http-utils</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>event</artifactId> <exclusions> <!-- only the event interface is used, not the client --> <exclusion> <groupId>com.facebook.airlift</groupId> <artifactId>http-client</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>trace-token</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>discovery</artifactId> <exclusions> <!-- only the announcement interface is used, not the client --> <exclusion> <groupId>com.facebook.airlift</groupId> <artifactId>http-client</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>node</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>security</artifactId> </dependency> <dependency> <groupId>com.facebook.airlift</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.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> <optional>true</optional> </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.facebook.airlift</groupId> <artifactId>testing</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>bootstrap</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>log-manager</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.facebook.airlift</groupId> <artifactId>http-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>5.16.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-client</artifactId> <scope>test</scope> </dependency> </dependencies> </project>