Skip to content

Commit 9cc376c

Browse files
committed
added some descriptions to the pom
1 parent 1cad4b5 commit 9cc376c

File tree

5 files changed

+23
-17
lines changed

5 files changed

+23
-17
lines changed

fileupload/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<modelVersion>4.0.0</modelVersion>
1010
<artifactId>nanohttpd-apache-fileupload</artifactId>
1111
<name>NanoHttpd-apache file upload integration</name>
12+
<description>nanohttpd-apache-fileupload integrates the apache file upload framework into nanohttpd</description>
1213
<dependencies>
1314
<dependency>
1415
<groupId>org.nanohttpd</groupId>

nanolets/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>nanohttpd-nanolets</artifactId>
1010
<packaging>jar</packaging>
1111
<name>NanoHttpd-nano application server</name>
12+
<description>nanohttpd-nanolets add a very easy to use version of servlets into nanohttpd.</description>
1213
<dependencies>
1314
<dependency>
1415
<groupId>${project.groupId}</groupId>

samples/pom.xml

+19-17
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
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>
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>
34
<parent>
45
<groupId>org.nanohttpd</groupId>
56
<artifactId>nanohttpd-project</artifactId>
67
<version>2.2.0-SNAPSHOT</version>
78
</parent>
8-
<artifactId>nanohttpd-samples</artifactId>
9-
<packaging>jar</packaging>
10-
<name>NanoHttpd-Samples</name>
11-
<dependencies>
12-
<dependency>
13-
<groupId>${project.groupId}</groupId>
14-
<artifactId>nanohttpd</artifactId>
15-
<version>${project.version}</version>
16-
</dependency>
17-
<dependency>
18-
<groupId>${project.groupId}</groupId>
19-
<artifactId>nanohttpd-webserver</artifactId>
20-
<version>${project.version}</version>
21-
</dependency>
22-
</dependencies>
9+
<artifactId>nanohttpd-samples</artifactId>
10+
<description>samples for nanohttpd</description>
11+
<packaging>jar</packaging>
12+
<name>NanoHttpd-Samples</name>
13+
<dependencies>
14+
<dependency>
15+
<groupId>${project.groupId}</groupId>
16+
<artifactId>nanohttpd</artifactId>
17+
<version>${project.version}</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>${project.groupId}</groupId>
21+
<artifactId>nanohttpd-webserver</artifactId>
22+
<version>${project.version}</version>
23+
</dependency>
24+
</dependencies>
2325
<properties>
2426
<minimal.coverage>0.0</minimal.coverage>
2527
</properties>

webserver/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>nanohttpd-webserver</artifactId>
1010
<packaging>jar</packaging>
1111
<name>NanoHttpd-Webserver</name>
12+
<description>nanohttpd-webserver can serve any local directory as a webserver using nanohttpd.</description>
1213
<dependencies>
1314
<dependency>
1415
<groupId>${project.groupId}</groupId>

websocket/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<artifactId>nanohttpd-websocket</artifactId>
1010
<packaging>jar</packaging>
1111
<name>NanoHttpd-Websocket</name>
12+
<description>nanohttpd-websocket is a very low profile websocket server based on nanohttpd.</description>
1213
<build>
1314
<plugins>
1415
<plugin>

0 commit comments

Comments
 (0)