Home | History | Annotate | Download | only in core
      1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      3     <modelVersion>4.0.0</modelVersion>
      4 
      5     <groupId>fi.iki.elonen</groupId>
      6     <artifactId>nanohttpd</artifactId>
      7     <version>2.1.0</version>
      8     <packaging>jar</packaging>
      9 
     10     <name>NanoHttpd-Core</name>
     11     <url>https://github.com/NanoHttpd/nanohttpd</url>
     12 
     13     <dependencies>
     14         <dependency>
     15             <groupId>junit</groupId>
     16             <artifactId>junit</artifactId>
     17             <version>4.8.2</version>
     18             <scope>test</scope>
     19         </dependency>
     20         <dependency>
     21             <groupId>org.apache.httpcomponents</groupId>
     22             <artifactId>httpclient</artifactId>
     23             <version>4.2.5</version>
     24             <scope>test</scope>
     25         </dependency>
     26         <dependency>
     27             <groupId>org.apache.httpcomponents</groupId>
     28             <artifactId>httpmime</artifactId>
     29             <version>4.2.5</version>
     30             <scope>test</scope>
     31         </dependency>
     32     </dependencies>
     33 
     34     <build>
     35         <extensions>
     36             <extension>
     37                 <groupId>org.jvnet.wagon-svn</groupId>
     38                 <artifactId>wagon-svn</artifactId>
     39                 <version>1.8</version>
     40             </extension>
     41             <extension>
     42                 <groupId>org.apache.maven.wagon</groupId>
     43                 <artifactId>wagon-ftp</artifactId>
     44                 <version>1.0-alpha-6</version>
     45             </extension>
     46         </extensions>
     47 
     48         <plugins>
     49             <plugin>
     50                 <groupId>org.apache.maven.plugins</groupId>
     51                 <artifactId>maven-source-plugin</artifactId>
     52                 <version>2.2.1</version>
     53                 <executions>
     54                     <execution>
     55                         <id>attach-sources</id>
     56                         <goals>
     57                             <goal>jar</goal>
     58                         </goals>
     59                     </execution>
     60                 </executions>
     61             </plugin>
     62             <plugin>
     63                 <groupId>org.apache.maven.plugins</groupId>
     64                 <artifactId>maven-release-plugin</artifactId>
     65                 <version>2.4</version>
     66             </plugin>
     67             <plugin>
     68                 <groupId>org.apache.maven.plugins</groupId>
     69                 <artifactId>maven-javadoc-plugin</artifactId>
     70                 <version>2.9</version>
     71             </plugin>
     72             <plugin>
     73                 <groupId>org.apache.maven.plugins</groupId>
     74                 <artifactId>maven-compiler-plugin</artifactId>
     75                 <version>2.3.1</version>
     76                 <configuration>
     77                     <source>1.6</source>
     78                     <target>1.6</target>
     79                 </configuration>
     80             </plugin>
     81         </plugins>
     82     </build>
     83 </project>
     84