Update Maven plugins

This commit is contained in:
md_5 2021-07-03 11:06:33 +10:00
parent cbe0ac7ce1
commit 1e8368ea8d
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11
5 changed files with 7 additions and 7 deletions

View File

@ -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>

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {

View File

@ -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) {