diff --git a/README.md b/README.md
index 97773c5..8ee6d8f 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ BungeeIPC is a set of APIs and plugins meant for BungeeCord proxies and their ba
## Obtaining BungeeIPC
You can obtain a copy of BungeeIPC via the following methods:
-- Download a pre-built copy from the [Releases page](https://github.com/bspfsystems/BungeeIPC/releases/latest/). The latest version is release 3.0.2.
+- Download a pre-built copy from the [Releases page](https://github.com/bspfsystems/BungeeIPC/releases/latest/). The latest version is release 3.0.4.
- Build from source (see below).
If you need to use BungeeIPC as a dependency for your project, please see the Development API section below.
@@ -58,7 +58,7 @@ Include the following in your `pom.xml` file:
org.bspfsystems.bungeeipc
bungeeipc-common-api
- 3.0.2
+ 3.0.4
provided
@@ -68,7 +68,7 @@ Include the following in your `pom.xml` file:
org.bspfsystems.bungeeipc
bungeeipc-client-api
- 3.0.2
+ 3.0.4
provided
@@ -78,7 +78,7 @@ Include the following in your `pom.xml` file:
org.bspfsystems.bungeeipc
bungeeipc-server-api
- 3.0.2
+ 3.0.4
provided
@@ -95,17 +95,17 @@ repositories {
// For both Bukkit and BungeeCord
dependencies {
- compileOnly "org.bspfsystems.bungeeipc:bungeeipc-common-api:3.0.2"
+ compileOnly "org.bspfsystems.bungeeipc:bungeeipc-common-api:3.0.4"
}
// For Bukkit
dependencies {
- compileOnly "org.bspfsystems.bungeeipc:bungeeipc-client-api:3.0.2"
+ compileOnly "org.bspfsystems.bungeeipc:bungeeipc-client-api:3.0.4"
}
// For BungeeCord
dependencies {
- compileOnly "org.bspfsystems.bungeeipc:bungeeipc-server-api:3.0.2"
+ compileOnly "org.bspfsystems.bungeeipc:bungeeipc-server-api:3.0.4"
}
```
diff --git a/bukkit/pom.xml b/bukkit/pom.xml
index 13f21d6..ad2a198 100644
--- a/bukkit/pom.xml
+++ b/bukkit/pom.xml
@@ -24,7 +24,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
bungeeipc-bukkit
@@ -37,7 +37,7 @@
org.bspfsystems.bungeeipc
bungeeipc-client-api
- 3.0.3
+ 3.0.4
compile
diff --git a/bukkit/src/main/java/org/bspfsystems/bungeeipc/bukkit/BukkitIPCPlugin.java b/bukkit/src/main/java/org/bspfsystems/bungeeipc/bukkit/BukkitIPCPlugin.java
index 6772c6c..2da0b7c 100644
--- a/bukkit/src/main/java/org/bspfsystems/bungeeipc/bukkit/BukkitIPCPlugin.java
+++ b/bukkit/src/main/java/org/bspfsystems/bungeeipc/bukkit/BukkitIPCPlugin.java
@@ -105,8 +105,7 @@ public void onEnable() {
// Command setup
- final TabExecutor ipcTabExecutor = new IPCTabExecutor(this);
- this.registerCommand("ipc", ipcTabExecutor);
+ this.registerCommand("ipc", new IPCTabExecutor(this));
// Main data directory setup
diff --git a/bukkit/src/main/resources/plugin.yml b/bukkit/src/main/resources/plugin.yml
index 9553fbf..81ee1e1 100644
--- a/bukkit/src/main/resources/plugin.yml
+++ b/bukkit/src/main/resources/plugin.yml
@@ -2,7 +2,7 @@ name: BungeeIPC
main: org.bspfsystems.bungeeipc.bukkit.BukkitIPCPlugin
author: mciolkosz
website: https://github.com/bspfsystems/BungeeIPC/
-version: 3.0.3
+version: 3.0.4
commands:
ipc:
diff --git a/bungeecord/pom.xml b/bungeecord/pom.xml
index 970f2b9..c78a95c 100644
--- a/bungeecord/pom.xml
+++ b/bungeecord/pom.xml
@@ -24,7 +24,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
bungeeipc-bungeecord
@@ -37,7 +37,7 @@
org.bspfsystems.bungeeipc
bungeeipc-server-api
- 3.0.3
+ 3.0.4
compile
diff --git a/bungeecord/src/main/resources/plugin.yml b/bungeecord/src/main/resources/plugin.yml
index b6ac633..d7cc866 100644
--- a/bungeecord/src/main/resources/plugin.yml
+++ b/bungeecord/src/main/resources/plugin.yml
@@ -1,4 +1,4 @@
name: BungeeIPC
main: org.bspfsystems.bungeeipc.bungeecord.BungeeIPCPlugin
-version: 3.0.3
+version: 3.0.4
author: mciolkosz
diff --git a/client-api/pom.xml b/client-api/pom.xml
index 5b3da05..011ad04 100644
--- a/client-api/pom.xml
+++ b/client-api/pom.xml
@@ -23,7 +23,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
bungeeipc-client-api
@@ -36,7 +36,7 @@
org.bspfsystems.bungeeipc
bungeeipc-common-api
- 3.0.3
+ 3.0.4
compile
diff --git a/common-api/pom.xml b/common-api/pom.xml
index 5186cde..dab0cfe 100644
--- a/common-api/pom.xml
+++ b/common-api/pom.xml
@@ -23,7 +23,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
bungeeipc-common-api
diff --git a/pom.xml b/pom.xml
index 5b171b8..cd48c0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
pom
BungeeIPC
@@ -141,12 +141,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 3.4.0
-
-
- https://javadoc.io/doc/org.jetbrains/annotations/23.0.0/
-
-
+ 3.4.1
attach-javadocs
diff --git a/server-api/pom.xml b/server-api/pom.xml
index ebdb344..6edd95b 100644
--- a/server-api/pom.xml
+++ b/server-api/pom.xml
@@ -23,7 +23,7 @@
org.bspfsystems.bungeeipc
bungeeipc-parent
- 3.0.3
+ 3.0.4
bungeeipc-server-api
@@ -36,7 +36,7 @@
org.bspfsystems.bungeeipc
bungeeipc-common-api
- 3.0.3
+ 3.0.4
compile