Bumped to v1.3.1

This commit is contained in:
stijnb1234 2021-01-28 20:36:28 +01:00
parent d523a31310
commit af6a849a58
2 changed files with 6 additions and 9 deletions

11
pom.xml
View file

@ -6,7 +6,7 @@
<groupId>me.mctp</groupId> <groupId>me.mctp</groupId>
<artifactId>MCTPAudio</artifactId> <artifactId>MCTPAudio</artifactId>
<version>1.3</version> <version>1.3.1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>MCTPAudio</name> <name>MCTPAudio</name>
@ -29,13 +29,6 @@
<compilerArgs> <compilerArgs>
<arg>-parameters</arg> <arg>-parameters</arg>
</compilerArgs> </compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.16</version>
</path>
</annotationProcessorPaths>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
@ -115,7 +108,7 @@
<dependency> <dependency>
<groupId>net.raidstone</groupId> <groupId>net.raidstone</groupId>
<artifactId>WorldGuardEvents</artifactId> <artifactId>WorldGuardEvents</artifactId>
<version>1.15.2</version> <version>1.16.4</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>

View file

@ -85,4 +85,8 @@ public final class MCTPAudio extends JavaPlugin {
public static Playlist getPlaylist() { public static Playlist getPlaylist() {
return playlist; return playlist;
} }
public static PaperCommandManager getCommandManager() {
return commandManager;
}
} }