tiny-http-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.mastfrog</groupId>
<artifactId>tiny-http-server</artifactId>
<version>2.9.7</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>
<parent>
<groupId>com.mastfrog</groupId>
<artifactId>mastfrog-parent</artifactId>
<version>2.9.7</version>
<relativePath/>
</parent>
<artifactId>tiny-http-server</artifactId>
<url>https://github.com/timboudreau/netty-http-client</url>
<scm>
<url>https://github.com/timboudreau/netty-http-client.git</url>
<connection>scm:git:https://github.com/timboudreau/netty-http-client.git</connection>
<developerConnection>git@github.com/timboudreau/netty-http-client.git</developerConnection>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/timboudreau/netty-http-client/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Mastfrog Technologies</name>
<url>https://mastfrog.com</url>
</organization>
<name>Tiny Http Server</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</dependency>
</dependencies>
</project>