Home | History | Annotate | Download | only in nanohttpd
      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 
      4     <groupId>fi.iki.elonen</groupId>
      5     <artifactId>nanohttpd-project</artifactId>
      6     <version>2.1.0</version>
      7     <packaging>pom</packaging>
      8 
      9     <name>NanoHttpd-Project</name>
     10     <url>https://github.com/NanoHttpd/nanohttpd</url>
     11 
     12     <modules>
     13         <module>core</module>
     14         <module>samples</module>
     15         <module>webserver</module>
     16         <module>webserver/markdown-plugin</module>
     17         <module>websocket</module>
     18     </modules>
     19 
     20     <build>
     21         <extensions>
     22             <extension>
     23                 <groupId>org.jvnet.wagon-svn</groupId>
     24                 <artifactId>wagon-svn</artifactId>
     25                 <version>1.8</version>
     26             </extension>
     27             <extension>
     28                 <groupId>org.apache.maven.wagon</groupId>
     29                 <artifactId>wagon-ftp</artifactId>
     30                 <version>1.0-alpha-6</version>
     31             </extension>
     32         </extensions>
     33 
     34         <plugins>
     35             <plugin>
     36                 <groupId>org.apache.maven.plugins</groupId>
     37                 <artifactId>maven-source-plugin</artifactId>
     38                 <version>2.2.1</version>
     39                 <executions>
     40                     <execution>
     41                         <id>attach-sources</id>
     42                         <goals>
     43                             <goal>jar</goal>
     44                         </goals>
     45                     </execution>
     46                 </executions>
     47             </plugin>
     48             <plugin>
     49                 <groupId>org.apache.maven.plugins</groupId>
     50                 <artifactId>maven-release-plugin</artifactId>
     51                 <version>2.4</version>
     52             </plugin>
     53             <plugin>
     54                 <groupId>org.apache.maven.plugins</groupId>
     55                 <artifactId>maven-javadoc-plugin</artifactId>
     56                 <version>2.9</version>
     57             </plugin>
     58             <plugin>
     59                 <groupId>org.apache.maven.plugins</groupId>
     60                 <artifactId>maven-compiler-plugin</artifactId>
     61                 <version>2.3.1</version>
     62                 <configuration>
     63                     <source>1.6</source>
     64                     <target>1.6</target>
     65                 </configuration>
     66             </plugin>
     67         </plugins>
     68     </build>
     69 </project>
     70