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-webserver-markdown-plugin</artifactId> 9 <packaging>jar</packaging> 10 <name>NanoHttpd-Webserver-Markdown-Plugin</name> 11 <url>https://github.com/NanoHttpd/nanohttpd</url> 12 <dependencies> 13 <dependency> 14 <groupId>${project.groupId}</groupId> 15 <artifactId>nanohttpd</artifactId> 16 <version>${project.version}</version> 17 <scope>provided</scope> 18 </dependency> 19 <dependency> 20 <groupId>${project.groupId}</groupId> 21 <artifactId>nanohttpd-webserver</artifactId> 22 <version>${project.version}</version> 23 <scope>provided</scope> 24 </dependency> 25 <dependency> 26 <groupId>org.pegdown</groupId> 27 <artifactId>pegdown</artifactId> 28 <version>1.4.1</version> 29 </dependency> 30 </dependencies> 31 32 <build> 33 <plugins> 34 <plugin> 35 <groupId>org.apache.maven.plugins</groupId> 36 <artifactId>maven-assembly-plugin</artifactId> 37 <version>2.2-beta-5</version> 38 <configuration> 39 <descriptorRefs> 40 <descriptorRef>jar-with-dependencies</descriptorRef> 41 </descriptorRefs> 42 <archive> 43 <manifest> 44 <mainClass>fi.iki.elonen.SimpleWebServer</mainClass> 45 </manifest> 46 </archive> 47 </configuration> 48 <executions> 49 <execution> 50 <phase>package</phase> 51 <goals> 52 <goal>single</goal> 53 </goals> 54 </execution> 55 </executions> 56 </plugin> 57 </plugins> 58 </build> 59 <properties> 60 <minimal.coverage>0.0</minimal.coverage> 61 </properties> 62</project> 63