aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorritchie <ritchie@gmx.at>2015-09-26 06:13:05 +0200
committerritchie <ritchie@gmx.at>2015-09-26 06:13:05 +0200
commit34ea556fbb94657ff8be493b937f5e5e75ed0f28 (patch)
treefff17ace9c28b56a6e13283545ed079bb2f7f905
parent1ad52158b1bcd50e7315c71c3dcc33faa8cb057e (diff)
downloadnanohttpd-34ea556fbb94657ff8be493b937f5e5e75ed0f28.tar.gz
readme adapted for old TLD #233
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index e7835a0..4eacb5c 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Let's raise the bar and build a custom web application next:
Edit `pom.xml`, and add this between \<dependencies\>:
<dependency>
- <groupId>org.nanohttpd</groupId>
+ <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
<artifactId>nanohttpd</artifactId>
<version>2.2.0-SNAPSHOT</version>
</dependency>
@@ -141,7 +141,7 @@ NanoHTTPD is a Maven based project and deployed to central. Most development env
<dependencies>
<dependency>
- <groupId>org.nanohttpd</groupId>
+ <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
<artifactId>nanohttpd</artifactId>
<version>CURRENT_VERSION</version>
</dependency>
@@ -158,7 +158,7 @@ Next it depends what you are useing nanohttpd for, there are tree main usages.
For a specialized HTTP (HTTPS) service you can use the module with artifactId *nanohttpd*.
<dependency>
- <groupId>org.nanohttpd</groupId>
+ <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
<artifactId>nanohttpd</artifactId>
<version>CURRENT_VERSION</version>
</dependency>
@@ -170,7 +170,7 @@ Here you write your own subclass of *fi.iki.elonen.NanoHTTPD* to configure and t
For a specialized websocket service you can use the module with artifactId *nanohttpd-websocket*.
<dependency>
- <groupId>org.nanohttpd</groupId>
+ <groupId>org.nanohttpd</groupId> <!-- <groupId>com.nanohttpd</groupId> for 2.1.0 and earlier -->
<artifactId>nanohttpd-websocket</artifactId>
<version>CURRENT_VERSION</version>
</dependency>