ritchie | 8b3f33c | 2015-02-27 07:23:28 +0100 | [diff] [blame] | 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> |
ritchie | 0a750cb | 2015-05-08 07:52:38 +0200 | [diff] [blame] | 4 | <groupId>org.nanohttpd</groupId> |
ritchie | 8b3f33c | 2015-02-27 07:23:28 +0100 | [diff] [blame] | 5 | <artifactId>nanohttpd-project</artifactId> |
ritchie | a90fe20 | 2015-11-15 06:48:09 +0100 | [diff] [blame] | 6 | <version>2.2.0</version> |
ritchie | 8b3f33c | 2015-02-27 07:23:28 +0100 | [diff] [blame] | 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> |
ritchie | ffabe5f | 2015-09-13 06:22:54 +0200 | [diff] [blame] | 25 | <properties> |
ritchie | 1aacdb2 | 2015-10-03 07:35:55 +0200 | [diff] [blame] | 26 | <minimal.coverage>0.82</minimal.coverage> |
ritchie | ffabe5f | 2015-09-13 06:22:54 +0200 | [diff] [blame] | 27 | </properties> |
Paul Hawke | 47b3e36 | 2013-03-08 21:43:35 -0600 | [diff] [blame] | 28 | </project> |