fix(velocity): use dmg package namespace

This commit is contained in:
dmg
2026-08-01 14:52:48 -04:00
parent fa5346458a
commit 326cc60688
8 changed files with 10 additions and 9 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ plugins {
id("com.gradleup.shadow") version "8.3.9"
}
group = "games.twentyfaces"
group = "games.dmg"
version = "0.1.0"
repositories {
@@ -30,7 +30,7 @@ tasks.test {
tasks.shadowJar {
archiveClassifier.set("")
relocate("com.google.gson", "games.twentyfaces.accountmanager.lib.gson")
relocate("com.google.gson", "games.dmg.accountmanager.lib.gson")
}
tasks.build {
@@ -1,4 +1,4 @@
package games.twentyfaces.accountmanager;
package games.dmg.accountmanager;
record AccessDecision(boolean allowed, String message) {
static AccessDecision denied(String message) {
@@ -1,4 +1,4 @@
package games.twentyfaces.accountmanager;
package games.dmg.accountmanager;
import com.google.gson.Gson;
import java.io.IOException;
@@ -1,4 +1,4 @@
package games.twentyfaces.accountmanager;
package games.dmg.accountmanager;
import com.google.inject.Inject;
import com.velocitypowered.api.event.EventTask;
@@ -1,4 +1,4 @@
package games.twentyfaces.accountmanager;
package games.dmg.accountmanager;
import java.io.IOException;
import java.io.InputStream;
@@ -1,4 +1,4 @@
package games.twentyfaces.accountmanager;
package games.dmg.accountmanager;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertEquals;