Skip to content

Commit

Permalink
Released SimpleServerClient v2.4.0
Browse files Browse the repository at this point in the history
Releasing SimpleServerClient v2.4.0 changing the version numbers and editing the pom.xml just before uploading the compiled jar
  • Loading branch information
DeBukkIt committed Mar 3, 2018
1 parent d2a01d3 commit 28a298c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.blogspot.debukkitsblog</groupId>
<artifactId>SimpleServerClient</artifactId>
<version>2.3.4</version>
<version>2.4.0</version>
<name>SimpleServerClient</name>
<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>
<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>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
Expand All @@ -13,9 +13,11 @@
<resources>
<resource>
<directory>src</directory>
<excludes>
<!-- Include source code
<excludes>
<exclude>**/*.java</exclude>
</excludes>
-->
</resource>
</resources>
<plugins>
Expand Down
2 changes: 1 addition & 1 deletion src/com/blogspot/debukkitsblog/net/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* originally created on March 9, 2016 in Horstmar, Germany
*
* @author Leonard Bienbeck
* @version 2.3.5
* @version 2.4.0
*/
public class Client {

Expand Down
2 changes: 1 addition & 1 deletion src/com/blogspot/debukkitsblog/net/Datapackage.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* SimpleServerClient Clients and Servers
*
* @author Leonard Bienbeck
* @version 2.3.4
* @version 2.4.0
*/
public class Datapackage extends ArrayList<Object> implements Serializable {

Expand Down
2 changes: 1 addition & 1 deletion src/com/blogspot/debukkitsblog/net/Executable.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* identifiers.
*
* @author Leonard Bienbeck
* @version 1.0.0
* @version 2.4.0
*/
public interface Executable {

Expand Down
2 changes: 1 addition & 1 deletion src/com/blogspot/debukkitsblog/net/Server.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* originally created on March 9, 2016 in Horstmar, Germany
*
* @author Leonard Bienbeck
* @version 2.3.3
* @version 2.4.0
*/
public abstract class Server {

Expand Down

0 comments on commit 28a298c

Please sign in to comment.