Skip to content

Commit

Permalink
Updates:
Browse files Browse the repository at this point in the history
- Removed unnecessary local variable in the Bukkit plugin
  • Loading branch information
mciolkosz committed Aug 26, 2022
1 parent cbcabd3 commit 6ab1e17
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 27 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -58,7 +58,7 @@ Include the following in your `pom.xml` file:<br />
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-common-api</artifactId>
<version>3.0.2</version>
<version>3.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -68,7 +68,7 @@ Include the following in your `pom.xml` file:<br />
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-client-api</artifactId>
<version>3.0.2</version>
<version>3.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -78,7 +78,7 @@ Include the following in your `pom.xml` file:<br />
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-server-api</artifactId>
<version>3.0.2</version>
<version>3.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand All @@ -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"
}
```

Expand Down
4 changes: 2 additions & 2 deletions bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</parent>

<artifactId>bungeeipc-bukkit</artifactId>
Expand All @@ -37,7 +37,7 @@
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-client-api</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion bukkit/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions bungeecord/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</parent>

<artifactId>bungeeipc-bungeecord</artifactId>
Expand All @@ -37,7 +37,7 @@
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-server-api</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion bungeecord/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: BungeeIPC
main: org.bspfsystems.bungeeipc.bungeecord.BungeeIPCPlugin
version: 3.0.3
version: 3.0.4
author: mciolkosz
4 changes: 2 additions & 2 deletions client-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</parent>

<artifactId>bungeeipc-client-api</artifactId>
Expand All @@ -36,7 +36,7 @@
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-common-api</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion common-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</parent>

<artifactId>bungeeipc-common-api</artifactId>
Expand Down
9 changes: 2 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<packaging>pom</packaging>

<name>BungeeIPC</name>
Expand Down Expand Up @@ -141,12 +141,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.4.0</version>
<configuration>
<links>
<link>https://javadoc.io/doc/org.jetbrains/annotations/23.0.0/</link>
</links>
</configuration>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down
4 changes: 2 additions & 2 deletions server-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-parent</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
</parent>

<artifactId>bungeeipc-server-api</artifactId>
Expand All @@ -36,7 +36,7 @@
<dependency>
<groupId>org.bspfsystems.bungeeipc</groupId>
<artifactId>bungeeipc-common-api</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 6ab1e17

Please sign in to comment.