1<?xml version="1.0" encoding="UTF-8"?> 2<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"> 3 <parent> 4 <artifactId>nanohttpd-project</artifactId> 5 <groupId>org.nanohttpd</groupId> 6 <version>2.2.0</version> 7 </parent> 8 <modelVersion>4.0.0</modelVersion> 9 <artifactId>nanohttpd-apache-fileupload</artifactId> 10 <name>NanoHttpd-apache file upload integration</name> 11 <description>nanohttpd-apache-fileupload integrates the apache file upload framework into nanohttpd</description> 12 <dependencies> 13 <dependency> 14 <groupId>org.nanohttpd</groupId> 15 <artifactId>nanohttpd</artifactId> 16 <version>2.2.0</version> 17 <scope>provided</scope> 18 </dependency> 19 <dependency> 20 <groupId>commons-fileupload</groupId> 21 <artifactId>commons-fileupload</artifactId> 22 <version>1.3.1</version> 23 </dependency> 24 <dependency> 25 <groupId>javax.servlet</groupId> 26 <artifactId>servlet-api</artifactId> 27 <version>2.5</version> 28 <scope>provided</scope> 29 </dependency> 30 <dependency> 31 <groupId>org.apache.httpcomponents</groupId> 32 <artifactId>httpclient</artifactId> 33 <version>4.4.1</version> 34 <scope>test</scope> 35 </dependency> 36 <dependency> 37 <groupId>org.apache.httpcomponents</groupId> 38 <artifactId>httpmime</artifactId> 39 <version>4.4.1</version> 40 <scope>test</scope> 41 </dependency> 42 </dependencies> 43 <properties> 44 <minimal.coverage>0.99</minimal.coverage> 45 </properties> 46</project>