Skip to content

Commit

Permalink
v1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrgodsey committed Nov 27, 2023
1 parent d2d14fa commit dcee1bd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ room for extension with any plugins or custom behavior.
<dependency>
<groupId>network.ycc</groupId>
<artifactId>raknet-server</artifactId>
<version>1.0</version>
<version>1.1</version>
</dependency>
<dependency>
<groupId>network.ycc</groupId>
<artifactId>raknet-client</artifactId>
<version>1.0</version>
<version>1.1</version>
</dependency>
</dependencies>

Expand Down
6 changes: 2 additions & 4 deletions client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@
<parent>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet</artifactId>
<version>1.0</version>
<version>1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>network.ycc</groupId>
<artifactId>netty-raknet-client</artifactId>
<version>1.0</version>
<name>Netty RakNet - Client</name>

<dependencies>
<dependency>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet-common</artifactId>
<version>${project.version}</version>
<version>1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 1 addition & 3 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@
<parent>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet</artifactId>
<version>1.0</version>
<version>1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>network.ycc</groupId>
<artifactId>netty-raknet-common</artifactId>
<version>1.0</version>
<name>Netty RakNet - Common</name>

<dependencies>
Expand Down
7 changes: 1 addition & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>network.ycc</groupId>
<artifactId>netty-raknet</artifactId>
<version>1.0</version>
<version>1.1</version>
<name>Netty RakNet</name>
<description>A RakNet reliable UDP transport server using Netty.</description>
<url>https://github.com/yesdog/netty-raknet</url>
Expand Down Expand Up @@ -59,11 +59,6 @@
</dependency>
</dependencies>

<ciManagement>
<system>jenkins</system>
<url>http://ci.codemc.org/job/yesdog/job/netty-raknet</url>
</ciManagement>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/yesdog/netty-raknet/issues</url>
Expand Down
6 changes: 2 additions & 4 deletions server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@
<parent>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet</artifactId>
<version>1.0</version>
<version>1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>network.ycc</groupId>
<artifactId>netty-raknet-server</artifactId>
<version>1.0</version>
<name>Netty RakNet - Server</name>

<dependencies>
<dependency>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet-common</artifactId>
<version>${project.version}</version>
<version>1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
<parent>
<groupId>network.ycc</groupId>
<artifactId>netty-raknet</artifactId>
<version>1.0</version>
<version>1.1</version>
<relativePath>../pom.xml</relativePath>
</parent>

<groupId>network.ycc</groupId>
<artifactId>netty-raknet-tests</artifactId>
<version>1.0</version>
<version>1.1</version>
<name>Netty RakNet - Tests</name>

<properties>
Expand Down

0 comments on commit dcee1bd

Please sign in to comment.