mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-04 15:26:05 +00:00
Update for 1.16.2
This commit is contained in:
parent
44fe8f6f94
commit
c61f7e78fd
23
pom.xml
23
pom.xml
@ -136,14 +136,14 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-codec</groupId>
|
<groupId>commons-codec</groupId>
|
||||||
<artifactId>commons-codec</artifactId>
|
<artifactId>commons-codec</artifactId>
|
||||||
<version>1.9</version>
|
<version>1.14</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<artifactId>spigot</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<version>1.16.1-R0.1-SNAPSHOT</version>
|
<version>1.16.2-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -171,7 +171,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.ess3</groupId>
|
<groupId>net.ess3</groupId>
|
||||||
<artifactId>EssentialsX</artifactId>
|
<artifactId>EssentialsX</artifactId>
|
||||||
<version>2.18.0</version>
|
<version>2.18.1</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -185,7 +185,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.coreprotect</groupId>
|
<groupId>net.coreprotect</groupId>
|
||||||
<artifactId>coreprotect</artifactId>
|
<artifactId>coreprotect</artifactId>
|
||||||
<version>2.18.2</version>
|
<version>19.1</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -199,7 +199,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.destroystokyo.paper</groupId>
|
<groupId>com.destroystokyo.paper</groupId>
|
||||||
<artifactId>paper-api</artifactId>
|
<artifactId>paper-api</artifactId>
|
||||||
<version>1.16.1-R0.1-SNAPSHOT</version>
|
<version>1.16.2-R0.1-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
@ -217,13 +217,6 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.bukkit</groupId>
|
|
||||||
<artifactId>bukkit</artifactId>
|
|
||||||
<version>1.16.1-R0.1-SNAPSHOT</version>
|
|
||||||
<scope>provided</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.goldtreeservers</groupId>
|
<groupId>net.goldtreeservers</groupId>
|
||||||
<artifactId>worldguardextraflags</artifactId>
|
<artifactId>worldguardextraflags</artifactId>
|
||||||
@ -291,7 +284,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>pl.project13.maven</groupId>
|
<groupId>pl.project13.maven</groupId>
|
||||||
<artifactId>git-commit-id-plugin</artifactId>
|
<artifactId>git-commit-id-plugin</artifactId>
|
||||||
<version>4.0.1</version>
|
<version>4.0.2</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>get-the-git-infos</id>
|
<id>get-the-git-infos</id>
|
||||||
@ -439,8 +432,8 @@
|
|||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<version>3.1.1</version>
|
|
||||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<version>3.1.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<configLocation>checkstyle.xml</configLocation>
|
<configLocation>checkstyle.xml</configLocation>
|
||||||
<failOnViolation>true</failOnViolation>
|
<failOnViolation>true</failOnViolation>
|
||||||
|
@ -8,7 +8,6 @@ import org.bukkit.entity.EntityType;
|
|||||||
|
|
||||||
public class Groups
|
public class Groups
|
||||||
{
|
{
|
||||||
|
|
||||||
public static final List<Material> WOOL_COLORS = Arrays.asList(
|
public static final List<Material> WOOL_COLORS = Arrays.asList(
|
||||||
Material.WHITE_WOOL,
|
Material.WHITE_WOOL,
|
||||||
Material.RED_WOOL,
|
Material.RED_WOOL,
|
||||||
@ -81,6 +80,7 @@ public class Groups
|
|||||||
EntityType.PHANTOM,
|
EntityType.PHANTOM,
|
||||||
EntityType.PIG,
|
EntityType.PIG,
|
||||||
EntityType.PIGLIN,
|
EntityType.PIGLIN,
|
||||||
|
EntityType.PIGLIN_BRUTE,
|
||||||
EntityType.PILLAGER,
|
EntityType.PILLAGER,
|
||||||
EntityType.POLAR_BEAR,
|
EntityType.POLAR_BEAR,
|
||||||
EntityType.PUFFERFISH,
|
EntityType.PUFFERFISH,
|
||||||
@ -147,6 +147,7 @@ public class Groups
|
|||||||
Material.PHANTOM_SPAWN_EGG,
|
Material.PHANTOM_SPAWN_EGG,
|
||||||
Material.PIG_SPAWN_EGG,
|
Material.PIG_SPAWN_EGG,
|
||||||
Material.PIGLIN_SPAWN_EGG,
|
Material.PIGLIN_SPAWN_EGG,
|
||||||
|
Material.PIGLIN_BRUTE_SPAWN_EGG,
|
||||||
Material.PILLAGER_SPAWN_EGG,
|
Material.PILLAGER_SPAWN_EGG,
|
||||||
Material.POLAR_BEAR_SPAWN_EGG,
|
Material.POLAR_BEAR_SPAWN_EGG,
|
||||||
Material.PUFFERFISH_SPAWN_EGG,
|
Material.PUFFERFISH_SPAWN_EGG,
|
||||||
|
Loading…
Reference in New Issue
Block a user