Skip to content

Commit 78a35ee

Browse files
committed
menacher#57 updating version numbers and dependencies
1 parent 757833a commit 78a35ee

7 files changed

Lines changed: 15 additions & 13 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Maven
1414
<dependency>
1515
<groupId>com.github.menacher</groupId>
1616
<artifactId>nadron</artifactId>
17-
<version>0.4.2</version>
17+
<version>0.5</version>
1818
</dependency>
1919
```
2020
Using pre-built jar files

example-games/.classpath

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@
5656
<attribute value="jar:file:/C:/Users/aby/.m2/repository/org/msgpack/msgpack/0.6.8/msgpack-0.6.8-javadoc.jar!/" name="javadoc_location"/>
5757
</attributes>
5858
</classpathentry>
59-
<classpathentry kind="var" path="M2_REPO/com/github/menacher/nadclient/0.4.3-SNAPSHOT/nadclient-0.4.3-SNAPSHOT.jar" sourcepath="M2_REPO/com/github/menacher/nadclient/0.4.3-SNAPSHOT/nadclient-0.4.3-SNAPSHOT-sources.jar">
59+
<classpathentry kind="var" path="M2_REPO/com/github/menacher/nadclient/0.5/nadclient-0.5.jar" sourcepath="M2_REPO/com/github/menacher/nadclient/0.5/nadclient-0.5-sources.jar">
6060
<attributes>
61-
<attribute value="jar:file:/C:/Users/aby/.m2/repository/com/github/menacher/nadclient/0.4.3-SNAPSHOT/nadclient-0.4.3-SNAPSHOT-javadoc.jar!/" name="javadoc_location"/>
61+
<attribute value="jar:file:/C:/Users/aby/.m2/repository/com/github/menacher/nadclient/0.5/nadclient-0.5-javadoc.jar!/" name="javadoc_location"/>
6262
</attributes>
6363
</classpathentry>
64-
<classpathentry kind="var" path="M2_REPO/com/github/menacher/nadron/0.4.3-SNAPSHOT/nadron-0.4.3-SNAPSHOT.jar" sourcepath="M2_REPO/com/github/menacher/nadron/0.4.3-SNAPSHOT/nadron-0.4.3-SNAPSHOT-sources.jar">
64+
<classpathentry kind="var" path="M2_REPO/com/github/menacher/nadron/0.5/nadron-0.5.jar" sourcepath="M2_REPO/com/github/menacher/nadron/0.5/nadron-0.5-sources.jar">
6565
<attributes>
66-
<attribute value="jar:file:/C:/Users/aby/.m2/repository/com/github/menacher/nadron/0.4.3-SNAPSHOT/nadron-0.4.3-SNAPSHOT-javadoc.jar!/" name="javadoc_location"/>
66+
<attribute value="jar:file:/C:/Users/aby/.m2/repository/com/github/menacher/nadron/0.5/nadron-0.5-javadoc.jar!/" name="javadoc_location"/>
6767
</attributes>
6868
</classpathentry>
6969
<classpathentry kind="var" path="M2_REPO/io/netty/netty-all/4.0.10.Final/netty-all-4.0.10.Final.jar" sourcepath="M2_REPO/io/netty/netty-all/4.0.10.Final/netty-all-4.0.10.Final-sources.jar">

example-games/README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Pointers on main classes, classpaths and command line flags.
99

1010
**To start the game server**
1111
Set the classpath and provide the log4jconfiguration flag.
12-
set serverclasspath = ./nadron-0.4.2.jar;./....
12+
set serverclasspath = ./nadron-0.5.jar;./....
1313
java -cp $serverclasspath -Dlog4j.configuration=GameServerLog4j.properties io.nadron.GameServer
1414
**To start the zombie client**
15-
set clientclasspath = ./nadclient-0.4.2.jar;./netty-all-4.0.4.Final.jar....
15+
set clientclasspath = ./nadclient-0.5.jar;./netty-all-4.0.10.Final.jar....
1616
java -cp clientclasspath io.nadron.ZombieClient
1717

1818
Jar Dependencies
@@ -24,10 +24,12 @@ blazeds-core-3.2.0.3978.jar
2424
cglib-nodep-2.1_3.jar
2525
commons-logging-1.1.1.jar
2626
jetlang-0.2.9.jar
27-
nadron-0.4.2.jar
28-
nadclient-0.4.2.jar
27+
nadron-0.5.jar
28+
nadclient-0.5.jar
2929
log4j-1.2.16.jar
30-
netty-all-4.0.4.Final.jar
30+
netty-all-4.0.10.Final.jar
31+
msgpack-0.6.8.jar
32+
json-simple-1.1.1.jar
3133
slf4j-api-1.6.1.jar
3234
slf4j-log4j12-1.6.1.jar
3335
spring-aop-3.1.0.RELEASE.jar

nadclient/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Maven
88
<dependency>
99
<groupId>com.github.menacher</groupId>
1010
<artifactId>nadclient</artifactId>
11-
<version>0.4.2</version>
11+
<version>0.5</version>
1212
</dependency>
1313
```
1414
Execution
@@ -20,7 +20,7 @@ Pointers on main classes, classpaths and command line flags.
2020

2121
**To start the client **
2222
client can be executed from console using below command.
23-
java -cp ./client-0.1.jar;./netty-all-4.0.0.CR6.jar io.nadron.TestClass
23+
java -cp ./client-0.1.jar;./netty-all-4.0.10.Final.jar io.nadron.TestClass
2424

2525
Usage as game client
2626
====================
@@ -33,4 +33,4 @@ The general usage steps could be as outlined below.
3333

3434
Jar Dependencies
3535
----------------
36-
netty-all-4.0.0.CR6.jar
36+
netty-all-4.0.10.Final.jar

nadron/lib/msgpack-0.6.8.jar

276 KB
Binary file not shown.

nadron/lib/netty-all-4.0.0.CR6.jar

-1.35 MB
Binary file not shown.
1.39 MB
Binary file not shown.

0 commit comments

Comments
 (0)