-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from tlf30/24-release-0.1.0
Release v0.1.0
- Loading branch information
Showing
8 changed files
with
345 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
#### v0.1.0 | ||
SSL Support for TCP channel | ||
* SSL Support for TCP channel (#5, #6) | ||
* Optimize network message transport (#4, #11) | ||
* Better logging and enhanced test examples (#9) | ||
* Better error reporting on non-serializable objects in a message (#14, #16) | ||
* Separation of examples and library, and corresponding dependencies (#22) | ||
* Fixed issue where messages would be transferred before connection listeners were notified (#20, #21) | ||
* Fixed issue where dropped sockets would not be detected (#10, #23) | ||
|
||
#### V0.0.0 | ||
Initial Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,56 @@ | ||
# monkey-netty | ||
![Build](https://github.com/tlf30/monkey-netty/workflows/Java%20CI%20with%20Gradle/badge.svg) | ||
An implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication. | ||
See example for server and client in `examples` module | ||
An implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication. | ||
|
||
**Checkout our [Wiki](https://github.com/tlf30/monkey-netty/wiki) for getting started.** | ||
|
||
**See example for server and client in `examples` module.** | ||
|
||
## Installing with Gradle | ||
In your `build.gradle` you will need to: | ||
|
||
1. Include the github repo: | ||
```groovy | ||
repositories { | ||
... | ||
maven { | ||
url = 'https://maven.pkg.github.com/tlf30/monkey-netty' | ||
} | ||
} | ||
``` | ||
|
||
2. Specify the dependency: | ||
```groovy | ||
dependencies { | ||
... | ||
implementation 'io.tlf.monkeynetty:monkey-netty:0.1.0' | ||
} | ||
``` | ||
|
||
## Installing with Maven | ||
In your pom.xml you will need to: | ||
|
||
1. Include the github repo: | ||
```xml | ||
<repositories> | ||
... | ||
<repository> | ||
<id>monkey-netty</id> | ||
<name>Monkey-Netty GitHub Packages</name> | ||
<url>https://maven.pkg.github.com/tlf30/monkey-netty</url> | ||
</repository> | ||
</repositories> | ||
``` | ||
|
||
2. Specify the dependency: | ||
```xml | ||
<dependencies> | ||
... | ||
<dependency> | ||
<groupId>io.tlf.monkeynetty</groupId> | ||
<artifactId>monkey-netty</artifactId> | ||
<version>0.1.0</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
allprojects { | ||
version = '0.1.0-SNAPSHOT' | ||
version = '0.1.0' | ||
group = "io.tlf.monkeynetty" | ||
|
||
ext { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,11 @@ plugins { | |
id 'maven-publish' | ||
} | ||
|
||
java { | ||
withJavadocJar() | ||
withSourcesJar() | ||
} | ||
|
||
publishing { | ||
repositories { | ||
maven { | ||
|
@@ -17,6 +22,29 @@ publishing { | |
publications { | ||
gpr(MavenPublication) { | ||
from(components.java) | ||
pom { | ||
name = 'Monkey Netty' | ||
description = 'A implementation of a server-client communication system for jMonkeyEngine using Netty.IO that utilizes both TCP and UDP communication.' | ||
url = 'https://github.com/tlf30/monkey-netty' | ||
licenses { | ||
license { | ||
name = 'MIT License' | ||
url = 'https://opensource.org/licenses/MIT' | ||
} | ||
} | ||
developers { | ||
developer { | ||
id = 'tlf30' | ||
name = 'Trevor Flynn' | ||
email = '[email protected]' | ||
} | ||
} | ||
scm { | ||
connection = 'scm:git:git://github.com/tlf30/monkey-netty.git' | ||
developerConnection = 'scm:git:ssh://tlf30/monkey-netty.git' | ||
url = 'https://github.com/tlf30/monkey-netty/' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.