mirror of
https://github.com/filoghost/HolographicDisplays.git
synced 2024-12-25 02:07:36 +01:00
Move external libraries in the same package
This commit is contained in:
parent
c190f10092
commit
7b269ba0b1
@ -226,15 +226,15 @@
|
||||
<relocations>
|
||||
<relocation>
|
||||
<pattern>org.bstats.bukkit</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.metrics</shadedPattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.plugin.lib.metrics</shadedPattern>
|
||||
</relocation>
|
||||
<relocation>
|
||||
<pattern>me.filoghost.updatechecker</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.updater</shadedPattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.plugin.lib.updater</shadedPattern>
|
||||
</relocation>
|
||||
<relocation>
|
||||
<pattern>me.filoghost.fcommons</pattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.lib.fcommons</shadedPattern>
|
||||
<shadedPattern>me.filoghost.holographicdisplays.plugin.lib.fcommons</shadedPattern>
|
||||
</relocation>
|
||||
</relocations>
|
||||
</configuration>
|
||||
|
@ -13,9 +13,9 @@ import com.comphenix.protocol.events.PacketContainer;
|
||||
import com.comphenix.protocol.events.PacketEvent;
|
||||
import com.comphenix.protocol.wrappers.WrappedWatchableObject;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.placeholderapi.PlaceholderAPIHook;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.PlaceholderLineTracker;
|
||||
import me.filoghost.holographicdisplays.plugin.placeholder.tracking.TrackedLine;
|
||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||
|
@ -6,14 +6,14 @@
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib;
|
||||
|
||||
import com.comphenix.protocol.wrappers.WrappedDataWatcher;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerAttachEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityDestroy;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerMount;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntity.ObjectTypes;
|
||||
import me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.AbstractPacket;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerAttachEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityDestroy;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerEntityMetadata;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerMount;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntity.ObjectTypes;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.packetwrapper.WrapperPlayServerSpawnEntityLiving;
|
||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologram;
|
||||
import me.filoghost.holographicdisplays.common.hologram.StandardHologramLine;
|
||||
import me.filoghost.holographicdisplays.common.hologram.StandardItemLine;
|
||||
|
@ -7,8 +7,8 @@ package me.filoghost.holographicdisplays.plugin.disk;
|
||||
|
||||
import me.filoghost.fcommons.MaterialsHelper;
|
||||
import me.filoghost.fcommons.Strings;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.parser.MojangsonParseException;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.parser.MojangsonParser;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParseException;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.parser.MojangsonParser;
|
||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologram;
|
||||
import me.filoghost.holographicdisplays.plugin.hologram.internal.InternalHologramLine;
|
||||
import org.bukkit.Bukkit;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Byte} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashMap;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Double} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Float} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Int} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Long} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_Short} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* The {@code TAG_String} tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* An abstract NBT-Tag.
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt;
|
||||
|
||||
/**
|
||||
* <p>
|
@ -3,7 +3,7 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt.parser;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt.parser;
|
||||
|
||||
import java.io.IOException;
|
||||
|
@ -3,22 +3,22 @@
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.nbt.parser;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.nbt.parser;
|
||||
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTByteArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTCompound;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTDouble;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTFloat;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTIntArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTLong;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTString;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTTag;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTByte;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTInt;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTList;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTLongArray;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTShort;
|
||||
import me.filoghost.holographicdisplays.plugin.nbt.NBTType;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTByte;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTByteArray;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTCompound;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTDouble;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTFloat;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTInt;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTIntArray;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTList;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLong;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTLongArray;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTTag;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTType;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTString;
|
||||
import me.filoghost.holographicdisplays.plugin.lib.nbt.NBTShort;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.events.PacketContainer;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
@ -14,7 +14,7 @@
|
||||
* if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||
* 02111-1307 USA
|
||||
*/
|
||||
package me.filoghost.holographicdisplays.plugin.bridge.protocollib.packet;
|
||||
package me.filoghost.holographicdisplays.plugin.lib.packetwrapper;
|
||||
|
||||
import com.comphenix.protocol.PacketType;
|
||||
import com.comphenix.protocol.ProtocolLibrary;
|
Loading…
Reference in New Issue
Block a user