mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2024-11-18 00:46:55 +01:00
commit
27f8586d76
13
pom.xml
13
pom.xml
@ -6,7 +6,7 @@
|
|||||||
<groupId>me.clip</groupId>
|
<groupId>me.clip</groupId>
|
||||||
<artifactId>placeholderapi</artifactId>
|
<artifactId>placeholderapi</artifactId>
|
||||||
|
|
||||||
<version>2.9.1-DEV-${BUILD_NUMBER}</version>
|
<version>2.9.2</version>
|
||||||
<name>PlaceholderAPI</name>
|
<name>PlaceholderAPI</name>
|
||||||
<description>An awesome placeholder provider!</description>
|
<description>An awesome placeholder provider!</description>
|
||||||
<url>http://extendedclip.com</url>
|
<url>http://extendedclip.com</url>
|
||||||
@ -34,9 +34,14 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.13-R0.1-SNAPSHOT</version>
|
<version>1.13.1-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.code.gson</groupId>
|
||||||
|
<artifactId>gson</artifactId>
|
||||||
|
<version>2.8.5</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bstats</groupId>
|
<groupId>org.bstats</groupId>
|
||||||
<artifactId>bstats-bukkit</artifactId>
|
<artifactId>bstats-bukkit</artifactId>
|
||||||
@ -94,6 +99,10 @@
|
|||||||
<pattern>me.rayzr522</pattern>
|
<pattern>me.rayzr522</pattern>
|
||||||
<shadedPattern>me.clip.placeholderapi.util</shadedPattern>
|
<shadedPattern>me.clip.placeholderapi.util</shadedPattern>
|
||||||
</relocation>
|
</relocation>
|
||||||
|
<relocation>
|
||||||
|
<pattern>com.google.code.gson</pattern>
|
||||||
|
<shadedPattern>me.clip.placeholderapi.libs.gson</shadedPattern>
|
||||||
|
</relocation>
|
||||||
</relocations>
|
</relocations>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
|
@ -44,10 +44,7 @@ public final class ExpansionManager {
|
|||||||
plugin = instance;
|
plugin = instance;
|
||||||
File f = new File(PlaceholderAPIPlugin.getInstance().getDataFolder(), "expansions");
|
File f = new File(PlaceholderAPIPlugin.getInstance().getDataFolder(), "expansions");
|
||||||
if (!f.exists()) {
|
if (!f.exists()) {
|
||||||
if (!f.mkdir()) {
|
f.mkdirs();
|
||||||
PlaceholderAPIPlugin.getInstance().getLogger()
|
|
||||||
.severe("Failed to create expansions folder!");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -35,7 +35,8 @@ public enum NMSVersion {
|
|||||||
SPIGOT_1_10_R1("v1_10_R1"),
|
SPIGOT_1_10_R1("v1_10_R1"),
|
||||||
SPIGOT_1_11_R1("v1_11_R1"),
|
SPIGOT_1_11_R1("v1_11_R1"),
|
||||||
SPIGOT_1_12_R1("v1_12_R1"),
|
SPIGOT_1_12_R1("v1_12_R1"),
|
||||||
SPIGOT_1_13_R1("v1_13_R1");
|
SPIGOT_1_13_R1("v1_13_R1"),
|
||||||
|
SPIGOT_1_13_R2("v1_13_R2");
|
||||||
|
|
||||||
private String version;
|
private String version;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user