1<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">
2	<modelVersion>4.0.0</modelVersion>
3	<parent>
4		<groupId>org.nanohttpd</groupId>
5		<artifactId>nanohttpd-project</artifactId>
6		<version>2.2.0</version>
7	</parent>
8	<artifactId>nanohttpd</artifactId>
9	<packaging>jar</packaging>
10	<name>NanoHttpd-Core</name>
11	<dependencies>
12		<dependency>
13			<groupId>org.apache.httpcomponents</groupId>
14			<artifactId>httpclient</artifactId>
15			<version>4.2.5</version>
16			<scope>test</scope>
17		</dependency>
18		<dependency>
19			<groupId>org.apache.httpcomponents</groupId>
20			<artifactId>httpmime</artifactId>
21			<version>4.2.5</version>
22			<scope>test</scope>
23		</dependency>
24	</dependencies>
25	<properties>
26		<minimal.coverage>0.82</minimal.coverage>
27	</properties>
28</project>
29