Move external libraries in the same package

This commit is contained in:
filoghost 2021-06-20 12:36:56 +02:00
parent c190f10092
commit 7b269ba0b1
27 changed files with 53 additions and 53 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -3,7 +3,7 @@
*
* SPDX-License-Identifier: MIT
*/
package me.filoghost.holographicdisplays.plugin.nbt;
package me.filoghost.holographicdisplays.plugin.lib.nbt;
/**
* <p>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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