Skip to content

Commit 042e2ff

Browse files
committed
Updated libraries, fixed the version and updated the README
1 parent 9558215 commit 042e2ff

2 files changed

Lines changed: 17 additions & 10 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ PacketNET is a Java library for network communication using custom packet-based
66

77
## Features
88

9-
- Support for both UDP and TCP protocols
10-
- Packet compression using LZ4 or GZip algorithm
9+
- Support for both TCP and UDP protocols
10+
- Packet compression using LZ4, Deflater or GZip algorithm
1111
- Packet encryption using AES256
12-
- Server and client implementations
12+
- Efficient Server and client implementations
13+
- Thread Management
1314
- Event-based listener system
1415
- Easy-to-use API for creating and processing packets
1516
## Installation

pom.xml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>xyz.synse</groupId>
88
<artifactId>PacketNet</artifactId>
9-
<version>1.6</version>
9+
<version>1.5</version>
1010

1111
<properties>
1212
<maven.compiler.source>20</maven.compiler.source>
@@ -50,21 +50,27 @@
5050
<dependency>
5151
<groupId>junit</groupId>
5252
<artifactId>junit</artifactId>
53-
<version>4.12</version>
53+
<version>4.13.1</version>
5454
<scope>test</scope>
5555
</dependency>
5656
</dependencies>
5757

5858
<build>
59-
<finalName>maven-unit-test</finalName>
59+
<finalName>PacketNet</finalName>
6060
<plugins>
61-
6261
<plugin>
6362
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-surefire-plugin</artifactId>
65-
<version>2.22.0</version>
63+
<artifactId>maven-jar-plugin</artifactId>
64+
<version>3.2.0</version>
65+
<configuration>
66+
<archive>
67+
<manifest>
68+
<mainClass>com.example.Main</mainClass>
69+
</manifest>
70+
</archive>
71+
<finalName>${project.artifactId}-${project.version}</finalName>
72+
</configuration>
6673
</plugin>
67-
6874
</plugins>
6975
</build>
7076

0 commit comments

Comments
 (0)