1.8 Support
Dieser Commit ist enthalten in:
Ursprung
6244c79b63
Commit
5e917150c2
@ -29,8 +29,8 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>steamwar</groupId>
|
<groupId>steamwar</groupId>
|
||||||
<artifactId>Spigot-1.12</artifactId>
|
<artifactId>Spigot</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.12</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
@ -29,8 +29,8 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>steamwar</groupId>
|
<groupId>steamwar</groupId>
|
||||||
<artifactId>Spigot-1.14</artifactId>
|
<artifactId>Spigot</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.14</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
37
SpigotCore_8/pom.xml
Normale Datei
37
SpigotCore_8/pom.xml
Normale Datei
@ -0,0 +1,37 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>SpigotCore</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>SpigotCore_8</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<sourceDirectory>src</sourceDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src</directory>
|
||||||
|
<excludes>
|
||||||
|
<exclude>**/*.java</exclude>
|
||||||
|
<exclude>**/*.kt</exclude>
|
||||||
|
</excludes>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>Spigot</artifactId>
|
||||||
|
<version>1.8</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
13
SpigotCore_8/src/de/steamwar/inventory/SWInventory_v8.java
Normale Datei
13
SpigotCore_8/src/de/steamwar/inventory/SWInventory_v8.java
Normale Datei
@ -0,0 +1,13 @@
|
|||||||
|
package de.steamwar.inventory;
|
||||||
|
|
||||||
|
import org.bukkit.craftbukkit.v1_8_R3.inventory.CraftInventoryCustom;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.inventory.Inventory;
|
||||||
|
|
||||||
|
class SWInventory_v8 {
|
||||||
|
private SWInventory_v8(){}
|
||||||
|
|
||||||
|
static Inventory get(Player player, int size, String title){
|
||||||
|
return new CraftInventoryCustom(player, size, title);
|
||||||
|
}
|
||||||
|
}
|
@ -48,10 +48,16 @@
|
|||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>steamwar</groupId>
|
<groupId>steamwar</groupId>
|
||||||
<artifactId>Spigot-1.12</artifactId>
|
<artifactId>Spigot</artifactId>
|
||||||
<version>1.0</version>
|
<version>1.12</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>steamwar</groupId>
|
||||||
|
<artifactId>SpigotCore_8</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>steamwar</groupId>
|
<groupId>steamwar</groupId>
|
||||||
<artifactId>SpigotCore_12</artifactId>
|
<artifactId>SpigotCore_12</artifactId>
|
||||||
|
@ -19,6 +19,8 @@ public class Core extends JavaPlugin{
|
|||||||
version = 10;
|
version = 10;
|
||||||
else if(packageName.contains("1_9"))
|
else if(packageName.contains("1_9"))
|
||||||
version = 9;
|
version = 9;
|
||||||
|
else if(packageName.contains("1_8"))
|
||||||
|
version = 8;
|
||||||
else
|
else
|
||||||
version = 12;
|
version = 12;
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,9 @@ public class SWInventory implements Listener {
|
|||||||
callbacks = new HashMap<>();
|
callbacks = new HashMap<>();
|
||||||
player = p;
|
player = p;
|
||||||
switch(Core.getVersion()){
|
switch(Core.getVersion()){
|
||||||
|
case 8:
|
||||||
|
inventory = SWInventory_v8.get(p, size, t);
|
||||||
|
break;
|
||||||
case 14:
|
case 14:
|
||||||
inventory = SWInventory_v14.get(p, size, t);
|
inventory = SWInventory_v14.get(p, size, t);
|
||||||
break;
|
break;
|
||||||
|
1
pom.xml
1
pom.xml
@ -36,6 +36,7 @@
|
|||||||
</build>
|
</build>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
|
<module>SpigotCore_8</module>
|
||||||
<module>SpigotCore_12</module>
|
<module>SpigotCore_12</module>
|
||||||
<module>SpigotCore_14</module>
|
<module>SpigotCore_14</module>
|
||||||
<module>SpigotCore_Main</module>
|
<module>SpigotCore_Main</module>
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren