diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml index cf7bcf8..447005e 100644 --- a/dependency-reduced-pom.xml +++ b/dependency-reduced-pom.xml @@ -1,7 +1,7 @@ 4.0.0 - com.gmail.artemis.the.gr8 + io.github.artemis-the-gr8 PlayerStats 1.6.1 @@ -28,7 +28,7 @@ - com.gmail.artemis.the.gr8.playerstats.Main + com.github.artemis.the.gr8.playerstats.Main @@ -39,15 +39,15 @@ net.kyori - com.gmail.artemis.the.gr8.lib.kyori + com.github.artemis.the.gr8.lib.kyori com.tchristofferson - com.gmail.artemis.the.gr8.util.tchristofferson + com.github.artemis.the.gr8.util.tchristofferson org.bstats - com.gmail.artemis.the.gr8.util.bstats + com.github.artemis.the.gr8.util.bstats diff --git a/pom.xml b/pom.xml index dbd2d1e..9d831d1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,17 +4,41 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 - com.gmail.artemis.the.gr8 + io.github.artemis-the-gr8 PlayerStats 1.6.1 + PlayerStats + Statistics Plugin + https://www.spigotmc.org/resources/playerstats.102347/ + + + + MIT License + http://www.opensource.org/licenses/mit-license.php + + + + + + Artemis + artemis.the.gr8@gmail.com + https://github.com/Artemis-the-gr8 + + + + + https://github.com/itHotL/PlayerStats/tree/main + scm:git:git://github.com/itHotL/PlayerStats.git + scm:git:git://github.com/itHotL/PlayerStats.git + + UTF-8 16 16 - spigot-repo @@ -117,7 +141,7 @@ - com.gmail.artemis.the.gr8.playerstats.Main + com.github.artemis.the.gr8.playerstats.Main @@ -128,15 +152,15 @@ net.kyori - com.gmail.artemis.the.gr8.lib.kyori + com.github.artemis.the.gr8.lib.kyori com.tchristofferson - com.gmail.artemis.the.gr8.util.tchristofferson + com.github.artemis.the.gr8.util.tchristofferson org.bstats - com.gmail.artemis.the.gr8.util.bstats + com.github.artemis.the.gr8.util.bstats diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/Main.java b/src/main/java/com/github/artemis/the/gr8/playerstats/Main.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/Main.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/Main.java index 2100e99..9c4c825 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/Main.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/Main.java @@ -1,20 +1,20 @@ -package com.gmail.artemis.the.gr8.playerstats; +package com.github.artemis.the.gr8.playerstats; -import com.gmail.artemis.the.gr8.playerstats.api.PlayerStats; -import com.gmail.artemis.the.gr8.playerstats.api.PlayerStatsAPI; -import com.gmail.artemis.the.gr8.playerstats.commands.ReloadCommand; -import com.gmail.artemis.the.gr8.playerstats.commands.ShareCommand; -import com.gmail.artemis.the.gr8.playerstats.commands.StatCommand; -import com.gmail.artemis.the.gr8.playerstats.commands.TabCompleter; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.listeners.JoinListener; -import com.gmail.artemis.the.gr8.playerstats.msg.InternalFormatter; -import com.gmail.artemis.the.gr8.playerstats.msg.MessageBuilder; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatCalculator; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.api.PlayerStats; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.api.PlayerStatsAPI; +import com.github.artemis.the.gr8.playerstats.commands.ReloadCommand; +import com.github.artemis.the.gr8.playerstats.commands.ShareCommand; +import com.github.artemis.the.gr8.playerstats.commands.StatCommand; +import com.github.artemis.the.gr8.playerstats.commands.TabCompleter; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.listeners.JoinListener; +import com.github.artemis.the.gr8.playerstats.msg.InternalFormatter; +import com.github.artemis.the.gr8.playerstats.msg.MessageBuilder; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; +import com.github.artemis.the.gr8.playerstats.statistic.StatCalculator; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; import me.clip.placeholderapi.PlaceholderAPIPlugin; import me.clip.placeholderapi.expansion.PlaceholderExpansion; import net.kyori.adventure.platform.bukkit.BukkitAudiences; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/ShareManager.java b/src/main/java/com/github/artemis/the/gr8/playerstats/ShareManager.java similarity index 95% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/ShareManager.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/ShareManager.java index 57ebaa1..d9c8f86 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/ShareManager.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/ShareManager.java @@ -1,8 +1,8 @@ -package com.gmail.artemis.the.gr8.playerstats; +package com.github.artemis.the.gr8.playerstats; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.InternalStatResult; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.statistic.result.InternalStatResult; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import net.kyori.adventure.text.TextComponent; import org.bukkit.command.CommandSender; import org.bukkit.command.ConsoleCommandSender; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/ThreadManager.java b/src/main/java/com/github/artemis/the/gr8/playerstats/ThreadManager.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/ThreadManager.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/ThreadManager.java index d073a7d..7f83846 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/ThreadManager.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/ThreadManager.java @@ -1,13 +1,13 @@ -package com.gmail.artemis.the.gr8.playerstats; +package com.github.artemis.the.gr8.playerstats; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; -import com.gmail.artemis.the.gr8.playerstats.reload.ReloadThread; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatCalculator; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatThread; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.reload.ReloadThread; +import com.github.artemis.the.gr8.playerstats.statistic.StatCalculator; +import com.github.artemis.the.gr8.playerstats.statistic.StatThread; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import org.bukkit.command.CommandSender; import java.util.HashMap; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/ApiFormatter.java b/src/main/java/com/github/artemis/the/gr8/playerstats/api/ApiFormatter.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/api/ApiFormatter.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/api/ApiFormatter.java index 1453d60..58ece2a 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/ApiFormatter.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/api/ApiFormatter.java @@ -1,8 +1,8 @@ -package com.gmail.artemis.the.gr8.playerstats.api; +package com.github.artemis.the.gr8.playerstats.api; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentUtils; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.NumberFormatter; +import com.github.artemis.the.gr8.playerstats.enums.Unit; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentUtils; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.NumberFormatter; import net.kyori.adventure.platform.bukkit.BukkitAudiences; import net.kyori.adventure.text.TextComponent; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStats.java b/src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStats.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStats.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStats.java index c3293e2..1f78484 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStats.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStats.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.api; +package com.github.artemis.the.gr8.playerstats.api; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.StatRequest; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.statistic.request.StatRequest; import org.jetbrains.annotations.Contract; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java b/src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java similarity index 88% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java index e586f32..720de82 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/api/PlayerStatsAPI.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.api; +package com.github.artemis.the.gr8.playerstats.api; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.*; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.statistic.request.*; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; import static org.jetbrains.annotations.ApiStatus.Internal; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/RequestGenerator.java b/src/main/java/com/github/artemis/the/gr8/playerstats/api/RequestGenerator.java similarity index 90% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/api/RequestGenerator.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/api/RequestGenerator.java index 2f0d0f2..e665bdb 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/RequestGenerator.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/api/RequestGenerator.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.api; +package com.github.artemis.the.gr8.playerstats.api; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatCalculator; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.StatRequest; +import com.github.artemis.the.gr8.playerstats.statistic.StatCalculator; +import com.github.artemis.the.gr8.playerstats.statistic.request.StatRequest; import org.bukkit.Material; import org.bukkit.Statistic; import org.bukkit.entity.EntityType; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/StatManager.java b/src/main/java/com/github/artemis/the/gr8/playerstats/api/StatManager.java similarity index 96% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/api/StatManager.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/api/StatManager.java index 4ad1a61..660f7ba 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/api/StatManager.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/api/StatManager.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.api; +package com.github.artemis.the.gr8.playerstats.api; import java.util.LinkedHashMap; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ReloadCommand.java b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/ReloadCommand.java similarity index 82% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ReloadCommand.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/commands/ReloadCommand.java index c749980..609c27f 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ReloadCommand.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/ReloadCommand.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.commands; +package com.github.artemis.the.gr8.playerstats.commands; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.ThreadManager; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ShareCommand.java b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/ShareCommand.java similarity index 82% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ShareCommand.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/commands/ShareCommand.java index 2c59363..f08179d 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/ShareCommand.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/ShareCommand.java @@ -1,10 +1,10 @@ -package com.gmail.artemis.the.gr8.playerstats.commands; +package com.github.artemis.the.gr8.playerstats.commands; -import com.gmail.artemis.the.gr8.playerstats.ShareManager; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.InternalStatResult; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.ShareManager; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.statistic.result.InternalStatResult; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/StatCommand.java b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/StatCommand.java similarity index 86% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/StatCommand.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/commands/StatCommand.java index 1df6e9a..04756eb 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/StatCommand.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/StatCommand.java @@ -1,11 +1,11 @@ -package com.gmail.artemis.the.gr8.playerstats.commands; +package com.github.artemis.the.gr8.playerstats.commands; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestHandler; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestHandler; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; import org.bukkit.Statistic; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/TabCompleter.java b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/TabCompleter.java similarity index 94% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/TabCompleter.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/commands/TabCompleter.java index 93b124b..60bded9 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/TabCompleter.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/TabCompleter.java @@ -1,8 +1,8 @@ -package com.gmail.artemis.the.gr8.playerstats.commands; +package com.github.artemis.the.gr8.playerstats.commands; -import com.gmail.artemis.the.gr8.playerstats.commands.cmdutils.TabCompleteHelper; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.commands.cmdutils.TabCompleteHelper; import org.bukkit.Statistic; import org.bukkit.command.Command; import org.bukkit.command.CommandSender; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java similarity index 92% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java index 123d866..d131302 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.commands.cmdutils; +package com.github.artemis.the.gr8.playerstats.commands.cmdutils; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; import org.bukkit.Material; import org.bukkit.entity.EntityType; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigHandler.java similarity index 98% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigHandler.java index 39bb4f0..7e30198 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigHandler.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.config; +package com.github.artemis.the.gr8.playerstats.config; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.enums.Unit; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.configuration.file.YamlConfiguration; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java similarity index 94% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java index 5dff868..cfa4776 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/config/ConfigUpdateHandler.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.config; +package com.github.artemis.the.gr8.playerstats.config; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import org.bukkit.configuration.file.YamlConfiguration; import java.io.File; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/DebugLevel.java b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/DebugLevel.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/DebugLevel.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/enums/DebugLevel.java index 84362c6..e49edab 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/DebugLevel.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/DebugLevel.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.enums; +package com.github.artemis.the.gr8.playerstats.enums; /** Represents the debugging level that PlayerStats can use.

diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/PluginColor.java b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/PluginColor.java similarity index 98% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/PluginColor.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/enums/PluginColor.java index 806a986..8d6cbde 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/PluginColor.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/PluginColor.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.enums; +package com.github.artemis.the.gr8.playerstats.enums; import net.kyori.adventure.text.format.NamedTextColor; import net.kyori.adventure.text.format.TextColor; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/StandardMessage.java b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/StandardMessage.java similarity index 88% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/StandardMessage.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/enums/StandardMessage.java index 0e95a7e..c07dcf0 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/StandardMessage.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/StandardMessage.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.enums; +package com.github.artemis.the.gr8.playerstats.enums; /** All standard messages PlayerStats can send as feedback. These are all the messages that can be sent without needing additional parameters.*/ diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Target.java b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/Target.java similarity index 73% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Target.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/enums/Target.java index 1d4affa..c2f935f 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Target.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/Target.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.enums; +package com.github.artemis.the.gr8.playerstats.enums; /** This enum represents the targets PlayerStats accepts for a stat-lookup (Player, Server and Top).*/ public enum Target { diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Unit.java b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/Unit.java similarity index 99% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Unit.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/enums/Unit.java index 4786dca..7a05787 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/enums/Unit.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/enums/Unit.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.enums; +package com.github.artemis.the.gr8.playerstats.enums; import org.bukkit.Statistic; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/listeners/JoinListener.java b/src/main/java/com/github/artemis/the/gr8/playerstats/listeners/JoinListener.java similarity index 83% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/listeners/JoinListener.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/listeners/JoinListener.java index 0ed752f..2f2c72a 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/listeners/JoinListener.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/listeners/JoinListener.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.listeners; +package com.github.artemis.the.gr8.playerstats.listeners; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.ThreadManager; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; import org.bukkit.event.player.PlayerJoinEvent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/InternalFormatter.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/InternalFormatter.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/InternalFormatter.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/InternalFormatter.java index 0fa7acb..5bb357c 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/InternalFormatter.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/InternalFormatter.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.msg; +package com.github.artemis.the.gr8.playerstats.msg; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatCalculator; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.statistic.StatCalculator; import net.kyori.adventure.text.*; import org.jetbrains.annotations.ApiStatus.Internal; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/MessageBuilder.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/MessageBuilder.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/MessageBuilder.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/MessageBuilder.java index a406c95..6c294a3 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/MessageBuilder.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/MessageBuilder.java @@ -1,19 +1,19 @@ -package com.gmail.artemis.the.gr8.playerstats.msg; +package com.github.artemis.the.gr8.playerstats.msg; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.api.ApiFormatter; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.api.ApiFormatter; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentFactory; +import com.github.artemis.the.gr8.playerstats.msg.components.ExampleMessage; +import com.github.artemis.the.gr8.playerstats.msg.components.HelpMessage; +import com.github.artemis.the.gr8.playerstats.msg.components.PrideComponentFactory; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.*; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.enums.Unit; -import com.gmail.artemis.the.gr8.playerstats.msg.components.PrideComponentFactory; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentFactory; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ExampleMessage; -import com.gmail.artemis.the.gr8.playerstats.msg.components.HelpMessage; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.*; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.TextComponent; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/OutputManager.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/OutputManager.java similarity index 92% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/OutputManager.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/OutputManager.java index fb779ee..fb3ec8b 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/OutputManager.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/OutputManager.java @@ -1,11 +1,11 @@ -package com.gmail.artemis.the.gr8.playerstats.msg; +package com.github.artemis.the.gr8.playerstats.msg; -import com.gmail.artemis.the.gr8.playerstats.ShareManager; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.msg.components.BukkitConsoleComponentFactory; -import com.gmail.artemis.the.gr8.playerstats.msg.components.PrideComponentFactory; +import com.github.artemis.the.gr8.playerstats.ShareManager; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.msg.components.BukkitConsoleComponentFactory; +import com.github.artemis.the.gr8.playerstats.msg.components.PrideComponentFactory; import net.kyori.adventure.platform.bukkit.BukkitAudiences; import net.kyori.adventure.text.TextComponent; import org.bukkit.Bukkit; @@ -22,7 +22,7 @@ import java.util.LinkedHashMap; import java.util.function.BiFunction; import java.util.function.Function; -import static com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage.*; +import static com.github.artemis.the.gr8.playerstats.enums.StandardMessage.*; /** This class manages all PlayerStats output. It is the only place where messages are sent. It gets its messages from a {@link MessageBuilder} configured for either a Console or for Players diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java similarity index 92% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java index 05a9f72..2ab8aaa 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/BukkitConsoleComponentFactory.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.PluginColor; +import com.github.artemis.the.gr8.playerstats.enums.PluginColor; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; import net.kyori.adventure.text.TextComponent; import net.kyori.adventure.text.format.NamedTextColor; import net.kyori.adventure.text.format.TextColor; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java index 6e87766..bc991ea 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentFactory.java @@ -1,11 +1,11 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.PluginColor; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; -import com.gmail.artemis.the.gr8.playerstats.msg.MessageBuilder; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.enums.PluginColor; +import com.github.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.enums.Unit; +import com.github.artemis.the.gr8.playerstats.msg.MessageBuilder; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.TextComponent; import net.kyori.adventure.text.TranslatableComponent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java similarity index 95% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java index 1e77a81..9d62a16 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ComponentUtils.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.StringUtils; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.StringUtils; import net.kyori.adventure.text.*; import net.kyori.adventure.text.flattener.ComponentFlattener; import net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java similarity index 98% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java index 3ecb809..1d78e64 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/ExampleMessage.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.ComponentLike; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/HelpMessage.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/HelpMessage.java similarity index 99% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/HelpMessage.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/HelpMessage.java index 6558a65..4aecb37 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/HelpMessage.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/HelpMessage.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; import net.kyori.adventure.text.Component; import net.kyori.adventure.text.ComponentLike; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java similarity index 95% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java index c2ebc58..8b34be9 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/components/PrideComponentFactory.java @@ -1,8 +1,8 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.components; +package com.github.artemis.the.gr8.playerstats.msg.components; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.PluginColor; +import com.github.artemis.the.gr8.playerstats.enums.PluginColor; import net.kyori.adventure.text.TextComponent; import net.kyori.adventure.text.format.TextColor; import net.kyori.adventure.text.minimessage.MiniMessage; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java similarity index 98% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java index f6bcf50..ede8e2b 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/EasterEggProvider.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.msgutils; +package com.github.artemis.the.gr8.playerstats.msg.msgutils; import me.clip.placeholderapi.PlaceholderAPI; import net.kyori.adventure.text.Component; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java similarity index 92% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java index 90fbe0c..dd2bf82 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/FontUtils.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.msgutils; +package com.github.artemis.the.gr8.playerstats.msg.msgutils; import org.bukkit.map.MinecraftFont; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java index 3627e49..4548b8f 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/LanguageKeyHandler.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.msgutils; +package com.github.artemis.the.gr8.playerstats.msg.msgutils; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.enums.Unit; import org.bukkit.Material; import org.bukkit.Statistic; import org.bukkit.configuration.file.FileConfiguration; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java index ca38c05..d1d8a45 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/NumberFormatter.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.msgutils; +package com.github.artemis.the.gr8.playerstats.msg.msgutils; -import com.gmail.artemis.the.gr8.playerstats.enums.Unit; +import com.github.artemis.the.gr8.playerstats.enums.Unit; import java.text.DecimalFormat; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java similarity index 88% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java index 8332b14..5cd816f 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/msg/msgutils/StringUtils.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.msg.msgutils; +package com.github.artemis.the.gr8.playerstats.msg.msgutils; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; /** A small utility class that helps make enum constant names prettier for output in stat-messages.*/ public final class StringUtils { diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadAction.java b/src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadAction.java similarity index 91% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadAction.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadAction.java index 46700a5..5e8c8c8 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadAction.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadAction.java @@ -1,8 +1,8 @@ -package com.gmail.artemis.the.gr8.playerstats.reload; +package com.github.artemis.the.gr8.playerstats.reload; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; -import com.gmail.artemis.the.gr8.playerstats.utils.UnixTimeHandler; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.utils.UnixTimeHandler; import org.bukkit.OfflinePlayer; import java.util.UUID; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadThread.java b/src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadThread.java similarity index 86% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadThread.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadThread.java index 291de3b..0d6eba8 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/reload/ReloadThread.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/reload/ReloadThread.java @@ -1,16 +1,16 @@ -package com.gmail.artemis.the.gr8.playerstats.reload; +package com.github.artemis.the.gr8.playerstats.reload; -import com.gmail.artemis.the.gr8.playerstats.ShareManager; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.config.ConfigHandler; -import com.gmail.artemis.the.gr8.playerstats.enums.DebugLevel; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; -import com.gmail.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatThread; -import com.gmail.artemis.the.gr8.playerstats.statistic.StatCalculator; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.ShareManager; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.msg.msgutils.LanguageKeyHandler; +import com.github.artemis.the.gr8.playerstats.statistic.StatCalculator; +import com.github.artemis.the.gr8.playerstats.statistic.StatThread; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.config.ConfigHandler; +import com.github.artemis.the.gr8.playerstats.enums.DebugLevel; import org.bukkit.Bukkit; import org.bukkit.OfflinePlayer; import org.bukkit.command.CommandSender; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatAction.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatAction.java similarity index 91% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatAction.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatAction.java index 345f4cd..707d780 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatAction.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatAction.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic; +package com.github.artemis.the.gr8.playerstats.statistic; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import com.google.common.collect.ImmutableList; import org.bukkit.OfflinePlayer; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatCalculator.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatCalculator.java similarity index 91% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatCalculator.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatCalculator.java index e070b41..b104f01 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatCalculator.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatCalculator.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic; +package com.github.artemis.the.gr8.playerstats.statistic; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; import com.google.common.collect.ImmutableList; import org.bukkit.OfflinePlayer; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatThread.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatThread.java similarity index 84% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatThread.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatThread.java index c23d6cb..e61ff13 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/StatThread.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/StatThread.java @@ -1,12 +1,12 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic; +package com.github.artemis.the.gr8.playerstats.statistic; -import com.gmail.artemis.the.gr8.playerstats.enums.StandardMessage; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.statistic.request.RequestSettings; -import com.gmail.artemis.the.gr8.playerstats.msg.OutputManager; -import com.gmail.artemis.the.gr8.playerstats.reload.ReloadThread; -import com.gmail.artemis.the.gr8.playerstats.ThreadManager; -import com.gmail.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.ThreadManager; +import com.github.artemis.the.gr8.playerstats.msg.OutputManager; +import com.github.artemis.the.gr8.playerstats.utils.MyLogger; +import com.github.artemis.the.gr8.playerstats.enums.StandardMessage; +import com.github.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.statistic.request.RequestSettings; +import com.github.artemis.the.gr8.playerstats.reload.ReloadThread; import net.kyori.adventure.text.TextComponent; import org.jetbrains.annotations.Nullable; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java similarity index 84% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java index 0158542..f6c9e56 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/PlayerStatRequest.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.api.RequestGenerator; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentUtils; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.PlayerStatResult; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.statistic.result.PlayerStatResult; +import com.github.artemis.the.gr8.playerstats.api.RequestGenerator; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentUtils; import net.kyori.adventure.text.TextComponent; import org.bukkit.Material; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java similarity index 96% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java index c1abc7b..5dbcd76 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestHandler.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.utils.EnumHandler; -import com.gmail.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.utils.EnumHandler; +import com.github.artemis.the.gr8.playerstats.utils.OfflinePlayerHandler; +import com.github.artemis.the.gr8.playerstats.enums.Target; import org.bukkit.Material; import org.bukkit.Statistic; import org.bukkit.command.CommandSender; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java similarity index 96% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java index 1778601..b429021 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/RequestSettings.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.api.RequestGenerator; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; +import com.github.artemis.the.gr8.playerstats.api.RequestGenerator; +import com.github.artemis.the.gr8.playerstats.enums.Target; import org.bukkit.Bukkit; import org.bukkit.Material; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java similarity index 84% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java index 56281ab..4174aec 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/ServerStatRequest.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.api.RequestGenerator; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentUtils; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.ServerStatResult; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.statistic.result.ServerStatResult; +import com.github.artemis.the.gr8.playerstats.api.RequestGenerator; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentUtils; import net.kyori.adventure.text.TextComponent; import org.bukkit.Material; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/StatRequest.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/StatRequest.java similarity index 81% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/StatRequest.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/StatRequest.java index 0d7a745..56c6d3b 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/StatRequest.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/StatRequest.java @@ -1,7 +1,7 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.enums.Target; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.StatResult; +import com.github.artemis.the.gr8.playerstats.statistic.result.StatResult; +import com.github.artemis.the.gr8.playerstats.enums.Target; import org.bukkit.Material; import org.bukkit.Statistic; import org.bukkit.entity.EntityType; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java similarity index 85% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java index e0b225d..e2c0320 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/request/TopStatRequest.java @@ -1,9 +1,9 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.request; +package com.github.artemis.the.gr8.playerstats.statistic.request; -import com.gmail.artemis.the.gr8.playerstats.Main; -import com.gmail.artemis.the.gr8.playerstats.api.RequestGenerator; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentUtils; -import com.gmail.artemis.the.gr8.playerstats.statistic.result.TopStatResult; +import com.github.artemis.the.gr8.playerstats.Main; +import com.github.artemis.the.gr8.playerstats.statistic.result.TopStatResult; +import com.github.artemis.the.gr8.playerstats.api.RequestGenerator; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentUtils; import net.kyori.adventure.text.TextComponent; import org.bukkit.Material; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java similarity index 88% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java index 2eb037b..53175a5 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/InternalStatResult.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.result; +package com.github.artemis.the.gr8.playerstats.statistic.result; -import com.gmail.artemis.the.gr8.playerstats.msg.components.ComponentUtils; +import com.github.artemis.the.gr8.playerstats.msg.components.ComponentUtils; import net.kyori.adventure.text.TextComponent; /** This Record is used to store stat-results internally, so Players can share them by clicking a share-button.*/ diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java similarity index 87% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java index 02a611a..a2e68ff 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/PlayerStatResult.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.result; +package com.github.artemis.the.gr8.playerstats.statistic.result; import net.kyori.adventure.text.TextComponent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java similarity index 87% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java index eb793f7..aaa1473 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/ServerStatResult.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.result; +package com.github.artemis.the.gr8.playerstats.statistic.result; import net.kyori.adventure.text.TextComponent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/StatResult.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/StatResult.java similarity index 95% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/StatResult.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/StatResult.java index 892e1c9..1a8e198 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/StatResult.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/StatResult.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.result; +package com.github.artemis.the.gr8.playerstats.statistic.result; -import com.gmail.artemis.the.gr8.playerstats.api.ApiFormatter; +import com.github.artemis.the.gr8.playerstats.api.ApiFormatter; import net.kyori.adventure.platform.bukkit.BukkitAudiences; import net.kyori.adventure.text.TextComponent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java similarity index 89% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java index 1f45761..d5d9af9 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/statistic/result/TopStatResult.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.statistic.result; +package com.github.artemis.the.gr8.playerstats.statistic.result; import net.kyori.adventure.text.TextComponent; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/EnumHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/EnumHandler.java similarity index 99% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/EnumHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/utils/EnumHandler.java index 8c4b587..9c0c28c 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/EnumHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/EnumHandler.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.utils; +package com.github.artemis.the.gr8.playerstats.utils; import org.bukkit.Material; import org.bukkit.Statistic; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/MyLogger.java b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/MyLogger.java similarity index 97% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/MyLogger.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/utils/MyLogger.java index afe388d..a233f44 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/MyLogger.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/MyLogger.java @@ -1,6 +1,6 @@ -package com.gmail.artemis.the.gr8.playerstats.utils; +package com.github.artemis.the.gr8.playerstats.utils; -import com.gmail.artemis.the.gr8.playerstats.enums.DebugLevel; +import com.github.artemis.the.gr8.playerstats.enums.DebugLevel; import org.bukkit.Bukkit; import org.bukkit.plugin.Plugin; import org.jetbrains.annotations.NotNull; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java similarity index 98% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java index 8b0b61b..49abbf2 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/OfflinePlayerHandler.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.utils; +package com.github.artemis.the.gr8.playerstats.utils; import org.bukkit.Bukkit; import org.bukkit.OfflinePlayer; diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java similarity index 93% rename from src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java rename to src/main/java/com/github/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java index ae21edb..6275351 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java +++ b/src/main/java/com/github/artemis/the/gr8/playerstats/utils/UnixTimeHandler.java @@ -1,4 +1,4 @@ -package com.gmail.artemis.the.gr8.playerstats.utils; +package com.github.artemis.the.gr8.playerstats.utils; /** A small utility class that calculates with unix time.*/ public final class UnixTimeHandler { diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index c7dfe99..3b2d77e 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,4 +1,4 @@ -main: com.gmail.artemis.the.gr8.playerstats.Main +main: com.github.artemis.the.gr8.playerstats.Main name: PlayerStats version: 1.6.1 api-version: 1.13