Update Maven plugins
This commit is contained in:
parent
cbe0ac7ce1
commit
1e8368ea8d
6
pom.xml
6
pom.xml
@ -327,7 +327,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.jdt</groupId>
|
<groupId>org.eclipse.jdt</groupId>
|
||||||
<artifactId>ecj</artifactId>
|
<artifactId>ecj</artifactId>
|
||||||
<version>3.24.0</version>
|
<version>3.26.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
@ -363,7 +363,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
<version>3.1.1</version>
|
<version>3.1.2</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<phase>process-classes</phase>
|
<phase>process-classes</phase>
|
||||||
@ -380,7 +380,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.puppycrawl.tools</groupId>
|
<groupId>com.puppycrawl.tools</groupId>
|
||||||
<artifactId>checkstyle</artifactId>
|
<artifactId>checkstyle</artifactId>
|
||||||
<version>8.39</version>
|
<version>8.44</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
@ -25,10 +25,10 @@ public class BlockMetadataStore extends MetadataStoreBase<Block> implements Meta
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a unique metadata key for a {@link Block} object based on its coordinates in the world.
|
* Generates a unique metadata key for a {@link Block} object based on its coordinates in the world.
|
||||||
* @see MetadataStoreBase#disambiguate(Object, String)
|
|
||||||
* @param block the block
|
* @param block the block
|
||||||
* @param metadataKey The name identifying the metadata value
|
* @param metadataKey The name identifying the metadata value
|
||||||
* @return a unique metadata key
|
* @return a unique metadata key
|
||||||
|
* @see MetadataStoreBase#disambiguate(Object, String)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected String disambiguate(Block block, String metadataKey) {
|
protected String disambiguate(Block block, String metadataKey) {
|
||||||
|
@ -11,10 +11,10 @@ public class EntityMetadataStore extends MetadataStoreBase<Entity> implements Me
|
|||||||
/**
|
/**
|
||||||
* Generates a unique metadata key for an {@link Entity} UUID.
|
* Generates a unique metadata key for an {@link Entity} UUID.
|
||||||
*
|
*
|
||||||
* @see MetadataStoreBase#disambiguate(Object, String)
|
|
||||||
* @param entity the entity
|
* @param entity the entity
|
||||||
* @param metadataKey The name identifying the metadata value
|
* @param metadataKey The name identifying the metadata value
|
||||||
* @return a unique metadata key
|
* @return a unique metadata key
|
||||||
|
* @see MetadataStoreBase#disambiguate(Object, String)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected String disambiguate(Entity entity, String metadataKey) {
|
protected String disambiguate(Entity entity, String metadataKey) {
|
||||||
|
@ -11,10 +11,10 @@ public class PlayerMetadataStore extends MetadataStoreBase<OfflinePlayer> implem
|
|||||||
/**
|
/**
|
||||||
* Generates a unique metadata key for {@link org.bukkit.entity.Player} and {@link OfflinePlayer} using the player
|
* Generates a unique metadata key for {@link org.bukkit.entity.Player} and {@link OfflinePlayer} using the player
|
||||||
* UUID.
|
* UUID.
|
||||||
* @see MetadataStoreBase#disambiguate(Object, String)
|
|
||||||
* @param player the player
|
* @param player the player
|
||||||
* @param metadataKey The name identifying the metadata value
|
* @param metadataKey The name identifying the metadata value
|
||||||
* @return a unique metadata key
|
* @return a unique metadata key
|
||||||
|
* @see MetadataStoreBase#disambiguate(Object, String)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected String disambiguate(OfflinePlayer player, String metadataKey) {
|
protected String disambiguate(OfflinePlayer player, String metadataKey) {
|
||||||
|
@ -10,10 +10,10 @@ import org.bukkit.metadata.MetadataStoreBase;
|
|||||||
public class WorldMetadataStore extends MetadataStoreBase<World> implements MetadataStore<World> {
|
public class WorldMetadataStore extends MetadataStoreBase<World> implements MetadataStore<World> {
|
||||||
/**
|
/**
|
||||||
* Generates a unique metadata key for a {@link World} object based on the world UID.
|
* Generates a unique metadata key for a {@link World} object based on the world UID.
|
||||||
* @see WorldMetadataStore#disambiguate(Object, String)
|
|
||||||
* @param world the world
|
* @param world the world
|
||||||
* @param metadataKey The name identifying the metadata value
|
* @param metadataKey The name identifying the metadata value
|
||||||
* @return a unique metadata key
|
* @return a unique metadata key
|
||||||
|
* @see WorldMetadataStore#disambiguate(Object, String)
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected String disambiguate(World world, String metadataKey) {
|
protected String disambiguate(World world, String metadataKey) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user