blob: 0e4762dd1e68f09d3abdab378a5389af19077946 [file] [log] [blame]
ritchie8b3f33c2015-02-27 07:23:28 +01001<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>
ritchie0a750cb2015-05-08 07:52:38 +02004 <groupId>org.nanohttpd</groupId>
ritchie8b3f33c2015-02-27 07:23:28 +01005 <artifactId>nanohttpd-project</artifactId>
ritchiea90fe202015-11-15 06:48:09 +01006 <version>2.2.0</version>
ritchie8b3f33c2015-02-27 07:23:28 +01007 </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>
ritchieffabe5f2015-09-13 06:22:54 +020025 <properties>
ritchie1aacdb22015-10-03 07:35:55 +020026 <minimal.coverage>0.82</minimal.coverage>
ritchieffabe5f2015-09-13 06:22:54 +020027 </properties>
Paul Hawke47b3e362013-03-08 21:43:35 -060028</project>