Rename main package
This commit is contained in:
parent
5e9b047281
commit
6c55bd3e6e
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
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>
|
||||
|
||||
<groupId>net.mindoverflow.network.uhccore</groupId>
|
||||
<groupId>wtf.beatrice.uhccore</groupId>
|
||||
<artifactId>UhcCore</artifactId>
|
||||
<version>0.0.136</version>
|
||||
<build>
|
||||
|
@ -1,11 +1,11 @@
|
||||
package net.mindoverflow.network.uhccore;
|
||||
package wtf.beatrice.uhccore;
|
||||
|
||||
import net.mindoverflow.network.uhccore.commands.UhcCoreCommand;
|
||||
import net.mindoverflow.network.uhccore.completers.InfoCompleter;
|
||||
import net.mindoverflow.network.uhccore.listeners.*;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
|
||||
import net.mindoverflow.network.uhccore.utils.MessageUtils;
|
||||
import wtf.beatrice.uhccore.commands.UhcCoreCommand;
|
||||
import wtf.beatrice.uhccore.completers.InfoCompleter;
|
||||
import wtf.beatrice.uhccore.listeners.*;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.configuration.FileUtils;
|
||||
import wtf.beatrice.uhccore.utils.MessageUtils;
|
||||
import org.bukkit.plugin.PluginManager;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
@ -1,15 +1,15 @@
|
||||
package net.mindoverflow.network.uhccore.commands;
|
||||
package wtf.beatrice.uhccore.commands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.commands.uhccommands.*;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.MessageUtils;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.LocalizedMessages;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.MessageUtils;
|
||||
import wtf.beatrice.uhccore.utils.configuration.LocalizedMessages;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandExecutor;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.command.ConsoleCommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
import wtf.beatrice.uhccore.commands.uhccommands.*;
|
||||
|
||||
import java.util.logging.Level;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.plugin.Plugin;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import java.util.ArrayList;
|
@ -1,7 +1,7 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.configuration.FileUtils;
|
||||
import org.bukkit.command.CommandSender;
|
||||
|
||||
import java.util.logging.Level;
|
@ -1,9 +1,9 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.ConfigEntries;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.configuration.ConfigEntries;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.configuration.FileUtils;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
@ -1,8 +1,8 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.ConfigEntries;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.configuration.ConfigEntries;
|
||||
import wtf.beatrice.uhccore.utils.configuration.FileUtils;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
@ -1,9 +1,9 @@
|
||||
package net.mindoverflow.network.uhccore.commands.uhccommands;
|
||||
package wtf.beatrice.uhccore.commands.uhccommands;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.math.NumberUtils;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.math.NumberUtils;
|
||||
import org.bukkit.*;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.completers;
|
||||
package wtf.beatrice.uhccore.completers;
|
||||
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandSender;
|
@ -1,7 +1,7 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.EventPriority;
|
||||
import org.bukkit.event.Listener;
|
@ -1,9 +1,9 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.UhcUtils;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.UhcUtils;
|
||||
import org.bukkit.*;
|
||||
import org.bukkit.entity.Firework;
|
||||
import org.bukkit.entity.Player;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
@ -1,8 +1,8 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.UhcUtils;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.UhcUtils;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
@ -1,8 +1,8 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import net.mindoverflow.network.uhccore.utils.UhcUtils;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.utils.UhcUtils;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
@ -1,7 +1,7 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
||||
import org.bukkit.event.player.PlayerMoveEvent;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.listeners;
|
||||
package wtf.beatrice.uhccore.listeners;
|
||||
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.Inventory;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
import net.mindoverflow.network.uhccore.listeners.TeamsSelectorGUI;
|
||||
import wtf.beatrice.uhccore.listeners.TeamsSelectorGUI;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.ItemStack;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Player;
|
||||
|
@ -1,9 +1,9 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.FileUtils;
|
||||
import net.mindoverflow.network.uhccore.utils.configuration.LocalizedMessages;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.utils.configuration.FileUtils;
|
||||
import wtf.beatrice.uhccore.utils.configuration.LocalizedMessages;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.logging.Level;
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
public enum Permissions
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
package net.mindoverflow.network.uhccore.utils;
|
||||
package wtf.beatrice.uhccore.utils;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import org.bukkit.Color;
|
||||
import org.bukkit.FireworkEffect;
|
||||
import org.bukkit.Location;
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.utils.configuration;
|
||||
package wtf.beatrice.uhccore.utils.configuration;
|
||||
|
||||
public enum ConfigEntries
|
||||
{
|
@ -1,9 +1,9 @@
|
||||
package net.mindoverflow.network.uhccore.utils.configuration;
|
||||
package wtf.beatrice.uhccore.utils.configuration;
|
||||
|
||||
import net.mindoverflow.network.uhccore.UhcCore;
|
||||
import net.mindoverflow.network.uhccore.listeners.TeamsSelectorGUI;
|
||||
import net.mindoverflow.network.uhccore.utils.Cache;
|
||||
import net.mindoverflow.network.uhccore.utils.Debugger;
|
||||
import wtf.beatrice.uhccore.UhcCore;
|
||||
import wtf.beatrice.uhccore.listeners.TeamsSelectorGUI;
|
||||
import wtf.beatrice.uhccore.utils.Cache;
|
||||
import wtf.beatrice.uhccore.utils.Debugger;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.World;
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.utils.configuration;
|
||||
package wtf.beatrice.uhccore.utils.configuration;
|
||||
|
||||
public enum LocalizedMessages {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package net.mindoverflow.network.uhccore.utils.math;
|
||||
package wtf.beatrice.uhccore.utils.math;
|
||||
|
||||
import java.util.Random;
|
||||
|
@ -2,7 +2,7 @@ name: UHC-Core
|
||||
version: 0.0.136
|
||||
author: mind_overflow
|
||||
api-version: '1.15'
|
||||
main: net.mindoverflow.network.uhccore.UhcCore
|
||||
main: wtf.beatrice.uhccore.UhcCore
|
||||
commands:
|
||||
uhc:
|
||||
description: UHC-Core base command.
|
||||
|
Loading…
Reference in New Issue
Block a user