Skip to content

Commit 28a298c

Browse files
committed
Released SimpleServerClient v2.4.0
Releasing SimpleServerClient v2.4.0 changing the version numbers and editing the pom.xml just before uploading the compiled jar
1 parent d2a01d3 commit 28a298c

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

pom.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.blogspot.debukkitsblog</groupId>
44
<artifactId>SimpleServerClient</artifactId>
5-
<version>2.3.4</version>
5+
<version>2.4.0</version>
66
<name>SimpleServerClient</name>
7-
<description>Offers very simple and easy-to-use Java classes for Client-Server-Client or just Server-Client applications doing all the work for connection setup, reconnection, timeout, keep-alive, etc. in the background.</description>
7+
<description>A very lightweight and easy-to-use library for client-server-client or simply server-client applications in Java doing all the work for you: connection setup, reconnection, timeout, keep-alive etc. in the background. Simply tell the application what to send and receive, and the rest will happen by itself. That's almost magic!</description>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
</properties>
@@ -13,9 +13,11 @@
1313
<resources>
1414
<resource>
1515
<directory>src</directory>
16-
<excludes>
16+
<!-- Include source code
17+
<excludes>
1718
<exclude>**/*.java</exclude>
1819
</excludes>
20+
-->
1921
</resource>
2022
</resources>
2123
<plugins>

src/com/blogspot/debukkitsblog/net/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* originally created on March 9, 2016 in Horstmar, Germany
1919
*
2020
* @author Leonard Bienbeck
21-
* @version 2.3.5
21+
* @version 2.4.0
2222
*/
2323
public class Client {
2424

src/com/blogspot/debukkitsblog/net/Datapackage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* SimpleServerClient Clients and Servers
99
*
1010
* @author Leonard Bienbeck
11-
* @version 2.3.4
11+
* @version 2.4.0
1212
*/
1313
public class Datapackage extends ArrayList<Object> implements Serializable {
1414

src/com/blogspot/debukkitsblog/net/Executable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* identifiers.
99
*
1010
* @author Leonard Bienbeck
11-
* @version 1.0.0
11+
* @version 2.4.0
1212
*/
1313
public interface Executable {
1414

src/com/blogspot/debukkitsblog/net/Server.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* originally created on March 9, 2016 in Horstmar, Germany
2121
*
2222
* @author Leonard Bienbeck
23-
* @version 2.3.3
23+
* @version 2.4.0
2424
*/
2525
public abstract class Server {
2626

0 commit comments

Comments
 (0)