Move artifacts net.raphimc -> com.viaversion

Also updates the copyright header/licensing.
This commit is contained in:
FlorianMichael 2025-01-01 22:25:52 +01:00
parent b4543f8cdb
commit 910d8330cf
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
31 changed files with 211 additions and 131 deletions

View File

@ -29,7 +29,7 @@ repositories {
}
dependencies {
implementation("net.raphimc:viaaprilfools-common:x.x.x") // Get latest version from releases
implementation("com.viaversion:viaaprilfools-common:x.x.x") // Get latest version from releases
}
```
@ -43,7 +43,7 @@ dependencies {
<dependencies>
<dependency>
<groupId>net.raphimc</groupId>
<groupId>com.viaversion</groupId>
<artifactId>viaaprilfools-common</artifactId>
<version>x.x.x</version> <!-- Get latest version from releases -->
</dependency>

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,13 +18,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools;
package com.viaversion.viaaprilfools;
import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.api.ViaManager;
import com.viaversion.viaversion.api.protocol.version.VersionProvider;
import net.raphimc.viaaprilfools.api.VAFServerVersionProvider;
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
import com.viaversion.viaaprilfools.api.VAFServerVersionProvider;
import com.viaversion.viaaprilfools.platform.ViaAprilFoolsPlatform;
import org.bukkit.plugin.java.JavaPlugin;
import java.io.File;

View File

@ -1,5 +1,5 @@
name: ViaAprilFools
main: net.raphimc.viaaprilfools.BukkitPlugin
main: com.viaversion.viaaprilfools.BukkitPlugin
authors: [RK_01, FlorianMichael/EnZaXD]
version: ${version}
description: ${description}

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,10 +18,10 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools;
package com.viaversion.viaaprilfools;
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsConfig;
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
import com.viaversion.viaaprilfools.platform.ViaAprilFoolsConfig;
import com.viaversion.viaaprilfools.platform.ViaAprilFoolsPlatform;
public class ViaAprilFools {

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools;
package com.viaversion.viaaprilfools;
import com.viaversion.viaversion.util.Config;
@ -27,7 +30,7 @@ import java.util.List;
import java.util.Map;
import java.util.logging.Logger;
public class ViaAprilFoolsConfig extends Config implements net.raphimc.viaaprilfools.platform.ViaAprilFoolsConfig {
public class ViaAprilFoolsConfig extends Config implements com.viaversion.viaaprilfools.platform.ViaAprilFoolsConfig {
public ViaAprilFoolsConfig(final File configFile, final Logger logger) {
super(configFile, logger);

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.api;
package com.viaversion.viaaprilfools.api;
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
import com.viaversion.viaversion.protocol.RedirectProtocolVersion;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.api;
package com.viaversion.viaaprilfools.api;
import com.viaversion.viaversion.api.connection.UserConnection;
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,12 +18,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.api.data;
package com.viaversion.viaaprilfools.api.data;
import com.viaversion.viabackwards.api.data.BackwardsMappingData;
import com.viaversion.viaversion.api.protocol.Protocol;
import com.viaversion.nbt.tag.CompoundTag;
import net.raphimc.viaaprilfools.ViaAprilFools;
import com.viaversion.viaaprilfools.ViaAprilFools;
import org.checkerframework.checker.nullness.qual.Nullable;
import java.util.logging.Logger;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,10 +18,10 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.api.data;
package com.viaversion.viaaprilfools.api.data;
import com.viaversion.viabackwards.api.data.BackwardsMappingDataLoader;
import net.raphimc.viaaprilfools.ViaAprilFools;
import com.viaversion.viaaprilfools.ViaAprilFools;
import java.io.File;
import java.util.logging.Logger;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.platform;
package com.viaversion.viaaprilfools.platform;
import com.viaversion.viaversion.api.configuration.Config;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,19 +18,19 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.platform;
package com.viaversion.viaaprilfools.platform;
import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.api.protocol.ProtocolManager;
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
import net.raphimc.viaaprilfools.ViaAprilFools;
import net.raphimc.viaaprilfools.ViaAprilFoolsConfig;
import net.raphimc.viaaprilfools.api.AprilFoolsProtocolVersion;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
import net.raphimc.viaaprilfools.protocol.scombattest8ctov1_16_2.ProtocolCombatTest8cTo1_16_2;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import net.raphimc.viaaprilfools.protocol.v1_14tos3d_shareware.Protocol1_14To3D_Shareware;
import net.raphimc.viaaprilfools.protocol.v1_16_2toscombattest8c.Protocol1_16_2ToCombatTest8c;
import com.viaversion.viaaprilfools.ViaAprilFools;
import com.viaversion.viaaprilfools.ViaAprilFoolsConfig;
import com.viaversion.viaaprilfools.api.AprilFoolsProtocolVersion;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
import com.viaversion.viaaprilfools.protocol.scombattest8ctov1_16_2.ProtocolCombatTest8cTo1_16_2;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import com.viaversion.viaaprilfools.protocol.v1_14tos3d_shareware.Protocol1_14To3D_Shareware;
import com.viaversion.viaaprilfools.protocol.v1_16_2toscombattest8c.Protocol1_16_2ToCombatTest8c;
import java.io.File;
import java.util.logging.Logger;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16;
import com.viaversion.viabackwards.api.BackwardsProtocol;
import com.viaversion.viabackwards.api.data.BackwardsMappingData;
@ -35,12 +38,11 @@ import com.viaversion.viaversion.rewriter.ParticleRewriter;
import com.viaversion.viaversion.rewriter.RecipeRewriter;
import com.viaversion.viaversion.rewriter.StatisticsRewriter;
import com.viaversion.viaversion.rewriter.TagRewriter;
import net.raphimc.viaaprilfools.api.data.AprilFoolsMappingData;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter.EntityPacketRewriter20w14infinite;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ServerboundPackets20w14infinite;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter.BlockItemPacketRewriter20w14infinite;
import org.checkerframework.checker.nullness.qual.Nullable;
import com.viaversion.viaaprilfools.api.data.AprilFoolsMappingData;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter.EntityPacketRewriter20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ServerboundPackets20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter.BlockItemPacketRewriter20w14infinite;
import java.util.UUID;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.data;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.data;
import com.viaversion.viaversion.libs.fastutil.ints.IntArrayList;
import com.viaversion.viaversion.libs.fastutil.ints.IntList;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet;
import com.viaversion.viaversion.api.protocol.packet.ClientboundPacketType;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet;
import com.viaversion.viaversion.api.protocol.packet.ServerboundPacketType;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter;
import com.viaversion.viaversion.api.minecraft.chunks.Chunk;
import com.viaversion.viaversion.api.minecraft.chunks.ChunkSection;
@ -32,9 +35,9 @@ import com.viaversion.nbt.tag.Tag;
import com.viaversion.viaversion.rewriter.BlockRewriter;
import com.viaversion.viaversion.rewriter.ItemRewriter;
import com.viaversion.viaversion.util.CompactArrayUtil;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.data.BiomeData20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.data.BiomeData20w14infinite;
import java.util.Map;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter;
package com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.rewriter;
import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.api.minecraft.entities.EntityType;
@ -29,8 +32,8 @@ import com.viaversion.viaversion.protocols.v1_15_2to1_16.data.DimensionRegistrie
import com.viaversion.viaversion.protocols.v1_15_2to1_16.packet.ClientboundPackets1_16;
import com.viaversion.viaversion.rewriter.EntityRewriter;
import com.viaversion.viaversion.util.Key;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import net.raphimc.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.packet.ClientboundPackets20w14infinite;
import com.viaversion.viaaprilfools.protocol.s20w14infinitetov1_16.Protocol20w14infiniteTo1_16;
import java.util.UUID;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14;
import com.viaversion.viabackwards.api.BackwardsProtocol;
import com.viaversion.viabackwards.api.data.BackwardsMappingData;
@ -29,12 +32,12 @@ import com.viaversion.viaversion.protocols.v1_13_2to1_14.Protocol1_13_2To1_14;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ClientboundPackets1_14;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ServerboundPackets1_14;
import com.viaversion.viaversion.rewriter.ParticleRewriter;
import net.raphimc.viaaprilfools.api.data.AprilFoolsMappingData;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ServerboundPackets3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter.BlockItemPacketRewriter3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter.EntityPacketRewriter3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.storage.ChunkCenterTracker3D_Shareware;
import com.viaversion.viaaprilfools.api.data.AprilFoolsMappingData;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ServerboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter.BlockItemPacketRewriter3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter.EntityPacketRewriter3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.storage.ChunkCenterTracker3D_Shareware;
public class Protocol3D_SharewareTo1_14 extends BackwardsProtocol<ClientboundPackets3D_Shareware, ClientboundPackets1_14, ServerboundPackets3D_Shareware, ServerboundPackets1_14> {

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet;
import com.viaversion.viaversion.api.protocol.packet.ClientboundPacketType;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet;
import com.viaversion.viaversion.api.protocol.packet.ServerboundPacketType;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,14 +18,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter;
import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers;
import com.viaversion.viaversion.api.type.Types;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ServerboundPackets1_14;
import com.viaversion.viaversion.rewriter.ItemRewriter;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
public class BlockItemPacketRewriter3D_Shareware extends ItemRewriter<ClientboundPackets3D_Shareware, ServerboundPackets1_14, Protocol3D_SharewareTo1_14> {

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.rewriter;
import com.viaversion.viaversion.api.connection.UserConnection;
import com.viaversion.viaversion.api.minecraft.entitydata.EntityData;
@ -23,8 +26,8 @@ import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers;
import com.viaversion.viaversion.api.rewriter.RewriterBase;
import com.viaversion.viaversion.api.type.Types;
import com.viaversion.viaversion.api.type.types.version.Types1_14;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.Protocol3D_SharewareTo1_14;
import java.util.List;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.storage;
package com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.storage;
import com.viaversion.viaversion.api.connection.StorableObject;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.scombattest8ctov1_16_2;
package com.viaversion.viaaprilfools.protocol.scombattest8ctov1_16_2;
import com.viaversion.viaversion.api.protocol.AbstractProtocol;
import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,13 +18,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.v1_14tos3d_shareware;
package com.viaversion.viaaprilfools.protocol.v1_14tos3d_shareware;
import com.viaversion.viabackwards.api.BackwardsProtocol;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ClientboundPackets1_14;
import com.viaversion.viaversion.protocols.v1_13_2to1_14.packet.ServerboundPackets1_14;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import net.raphimc.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ServerboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ClientboundPackets3D_Shareware;
import com.viaversion.viaaprilfools.protocol.s3d_sharewaretov1_14.packet.ServerboundPackets3D_Shareware;
public class Protocol1_14To3D_Shareware extends BackwardsProtocol<ClientboundPackets1_14, ClientboundPackets3D_Shareware, ServerboundPackets1_14, ServerboundPackets3D_Shareware> {

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.protocol.v1_16_2toscombattest8c;
package com.viaversion.viaaprilfools.protocol.v1_16_2toscombattest8c;
import com.viaversion.viaversion.api.protocol.AbstractProtocol;
import com.viaversion.viaversion.api.protocol.remapper.PacketHandlers;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,15 +18,15 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools;
package com.viaversion.viaaprilfools;
import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.api.ViaManager;
import com.viaversion.viaversion.api.protocol.version.VersionProvider;
import net.fabricmc.loader.api.FabricLoader;
import net.raphimc.viaaprilfools.api.VAFServerVersionProvider;
import net.raphimc.viaaprilfools.fabric.util.LoggerWrapper;
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
import com.viaversion.viaaprilfools.api.VAFServerVersionProvider;
import com.viaversion.viaaprilfools.fabric.util.LoggerWrapper;
import com.viaversion.viaaprilfools.platform.ViaAprilFoolsPlatform;
import org.apache.logging.log4j.LogManager;
import java.io.File;

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools.fabric.util;
package com.viaversion.viaaprilfools.fabric.util;
import java.text.MessageFormat;
import java.util.logging.Level;

View File

@ -18,12 +18,12 @@
],
"entrypoints": {
"viafabric:via_api_initialized": [
"net.raphimc.viaaprilfools.ViaFabricAddon"
"com.viaversion.viaaprilfools.ViaFabricAddon"
]
},
"depends": {
"viafabric": ">=0.4.14",
"viabackwards": ">=5.2.0"
"viabackwards": ">=5.2.1"
},
"custom": {
"modmenu:api": true,

View File

@ -2,8 +2,8 @@ org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.configureondemand=true
maven_group=net.raphimc
maven_version=3.0.5-SNAPSHOT
maven_group=com.viaversion
maven_version=4.0.0-SNAPSHOT
maven_description=ViaVersion addon to add support for some notable Minecraft snapshots
# Smile emoji

View File

@ -1,6 +1,9 @@
/*
* This file is part of ViaAprilFools - https://github.com/RaphiMC/ViaAprilFools
* Copyright (C) 2021-2025 RK_01/RaphiMC and contributors
* This file is part of ViaAprilFools - https://github.com/ViaVersion/ViaAprilFools
* Copyright (C) 2021-2025 the original authors
* - RK_01/RaphiMC
* - FlorianMichael/EnZaXD <florian.michael07@gmail.com>
* Copyright (C) 2023-2025 ViaVersion and contributors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -15,7 +18,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.raphimc.viaaprilfools;
package com.viaversion.viaaprilfools;
import com.google.inject.Inject;
import com.velocitypowered.api.event.PostOrder;
@ -28,8 +31,8 @@ import com.viaversion.viaversion.api.Via;
import com.viaversion.viaversion.api.ViaManager;
import com.viaversion.viaversion.api.protocol.version.VersionProvider;
import com.viaversion.viaversion.velocity.util.LoggerWrapper;
import net.raphimc.viaaprilfools.api.VAFServerVersionProvider;
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
import com.viaversion.viaaprilfools.api.VAFServerVersionProvider;
import com.viaversion.viaaprilfools.platform.ViaAprilFoolsPlatform;
import java.io.File;
import java.nio.file.Path;