Skip to content

Commit 75eb8c2

Browse files
Move artifacts net.raphimc -> com.viaversion
Also updates the copyright header/licensing.
1 parent 094fac6 commit 75eb8c2

29 files changed

+189
-106
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repositories {
1717
}
1818
1919
dependencies {
20-
implementation("net.raphimc:ViaLoader:x.x.x") // Get latest version from releases
20+
implementation("com.viaversion:vialoader:x.x.x") // Get latest version from releases
2121
}
2222
```
2323

@@ -31,8 +31,8 @@ dependencies {
3131

3232
<dependencies>
3333
<dependency>
34-
<groupId>net.raphimc</groupId>
35-
<artifactId>ViaLoader</artifactId>
34+
<groupId>com.viaversion</groupId>
35+
<artifactId>vialoader</artifactId>
3636
<version>x.x.x</version> <!-- Get latest version from releases -->
3737
</dependency>
3838
</dependencies>

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ base {
99
compileJava.options.encoding = compileTestJava.options.encoding = javadoc.options.encoding = "UTF-8"
1010

1111
group = project.maven_group ?: rootProject.maven_group
12-
archivesName = project.maven_name ?: rootProject.maven_name
12+
archivesName = project.name ?: rootProject.name
1313
version = project.maven_version ?: rootProject.maven_version
1414
}
1515

@@ -114,6 +114,11 @@ publishing {
114114
developer {
115115
id = "RK_01"
116116
}
117+
developer {
118+
id = "FlorianMichael"
119+
name = "EnZaXD"
120+
121+
}
117122
}
118123
scm {
119124
connection = "scm:git:git://github.com/ViaVersion/ViaLoader.git"

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ org.gradle.daemon=true
22
org.gradle.parallel=true
33
org.gradle.configureondemand=true
44

5-
maven_group=net.raphimc
6-
maven_name=ViaLoader
7-
maven_version=3.0.5-SNAPSHOT
5+
maven_group=com.viaversion
6+
maven_name=vialoader
7+
maven_version=4.0.0-SNAPSHOT

src/main/java/net/raphimc/vialoader/ViaLoader.java renamed to src/main/java/com/viaversion/vialoader/ViaLoader.java

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,7 +18,7 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader;
21+
package com.viaversion.vialoader;
1922

2023
import com.viaversion.viaversion.ViaManagerImpl;
2124
import com.viaversion.viaversion.api.Via;
@@ -24,11 +27,11 @@
2427
import com.viaversion.viaversion.api.platform.ViaPlatformLoader;
2528
import com.viaversion.viaversion.commands.ViaCommandHandler;
2629
import com.viaversion.viaversion.protocol.ProtocolManagerImpl;
27-
import net.raphimc.vialoader.impl.platform.ViaVersionPlatformImpl;
28-
import net.raphimc.vialoader.impl.viaversion.VLCommandHandler;
29-
import net.raphimc.vialoader.impl.viaversion.VLInjector;
30-
import net.raphimc.vialoader.impl.viaversion.VLLoader;
31-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
30+
import com.viaversion.vialoader.impl.platform.ViaVersionPlatformImpl;
31+
import com.viaversion.vialoader.impl.viaversion.VLCommandHandler;
32+
import com.viaversion.vialoader.impl.viaversion.VLInjector;
33+
import com.viaversion.vialoader.impl.viaversion.VLLoader;
34+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
3235
import org.slf4j.LoggerFactory;
3336

3437
import java.util.function.Supplier;

src/main/java/net/raphimc/vialoader/commands/UserCommandSender.java renamed to src/main/java/com/viaversion/vialoader/commands/UserCommandSender.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,7 +18,7 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.commands;
21+
package com.viaversion.vialoader.commands;
1922

2023
import com.viaversion.viaversion.api.Via;
2124
import com.viaversion.viaversion.api.command.ViaCommandSender;

src/main/java/net/raphimc/vialoader/impl/platform/ViaAprilFoolsPlatformImpl.java renamed to src/main/java/com/viaversion/vialoader/impl/platform/ViaAprilFoolsPlatformImpl.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,11 +18,11 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.impl.platform;
21+
package com.viaversion.vialoader.impl.platform;
1922

2023
import com.viaversion.viaversion.api.Via;
2124
import net.raphimc.viaaprilfools.platform.ViaAprilFoolsPlatform;
22-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
25+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
2326
import org.slf4j.LoggerFactory;
2427

2528
import java.io.File;

src/main/java/net/raphimc/vialoader/impl/platform/ViaBackwardsPlatformImpl.java renamed to src/main/java/com/viaversion/vialoader/impl/platform/ViaBackwardsPlatformImpl.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,11 +18,11 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.impl.platform;
21+
package com.viaversion.vialoader.impl.platform;
1922

2023
import com.viaversion.viabackwards.api.ViaBackwardsPlatform;
2124
import com.viaversion.viaversion.api.Via;
22-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
25+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
2326
import org.slf4j.LoggerFactory;
2427

2528
import java.io.File;

src/main/java/net/raphimc/vialoader/impl/platform/ViaBedrockPlatformImpl.java renamed to src/main/java/com/viaversion/vialoader/impl/platform/ViaBedrockPlatformImpl.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,11 +18,11 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.impl.platform;
21+
package com.viaversion.vialoader.impl.platform;
1922

2023
import com.viaversion.viaversion.api.Via;
2124
import net.raphimc.viabedrock.platform.ViaBedrockPlatform;
22-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
25+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
2326
import org.slf4j.LoggerFactory;
2427

2528
import java.io.File;

src/main/java/net/raphimc/vialoader/impl/platform/ViaLegacyPlatformImpl.java renamed to src/main/java/com/viaversion/vialoader/impl/platform/ViaLegacyPlatformImpl.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,11 +18,11 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.impl.platform;
21+
package com.viaversion.vialoader.impl.platform;
1922

2023
import com.viaversion.viaversion.api.Via;
2124
import net.raphimc.vialegacy.platform.ViaLegacyPlatform;
22-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
25+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
2326
import org.slf4j.LoggerFactory;
2427

2528
import java.io.File;

src/main/java/net/raphimc/vialoader/impl/platform/ViaRewindPlatformImpl.java renamed to src/main/java/com/viaversion/vialoader/impl/platform/ViaRewindPlatformImpl.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
/*
2-
* This file is part of ViaLoader - https://github.com/RaphiMC/ViaLoader
3-
* Copyright (C) 2020-2025 RK_01/RaphiMC and contributors
2+
* This file is part of ViaLoader - https://github.com/ViaVersion/ViaLoader
3+
* Copyright (C) 2020-2025 the original authors
4+
* - RK_01/RaphiMC
5+
* - FlorianMichael/EnZaXD <[email protected]>
6+
* Copyright (C) 2023-2025 ViaVersion and contributors
47
*
58
* This program is free software: you can redistribute it and/or modify
69
* it under the terms of the GNU General Public License as published by
@@ -15,11 +18,11 @@
1518
* You should have received a copy of the GNU General Public License
1619
* along with this program. If not, see <http://www.gnu.org/licenses/>.
1720
*/
18-
package net.raphimc.vialoader.impl.platform;
21+
package com.viaversion.vialoader.impl.platform;
1922

2023
import com.viaversion.viarewind.api.ViaRewindPlatform;
2124
import com.viaversion.viaversion.api.Via;
22-
import net.raphimc.vialoader.util.JLoggerToSLF4J;
25+
import com.viaversion.vialoader.util.JLoggerToSLF4J;
2326
import org.slf4j.LoggerFactory;
2427

2528
import java.io.File;

0 commit comments

Comments
 (0)