fix(velocity): use dmg package namespace
This commit is contained in:
@@ -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
-1
@@ -1,4 +1,4 @@
|
||||
package games.twentyfaces.accountmanager;
|
||||
package games.dmg.accountmanager;
|
||||
|
||||
record AccessDecision(boolean allowed, String message) {
|
||||
static AccessDecision denied(String message) {
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package games.twentyfaces.accountmanager;
|
||||
package games.dmg.accountmanager;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import java.io.IOException;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package games.twentyfaces.accountmanager;
|
||||
package games.dmg.accountmanager;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import com.velocitypowered.api.event.EventTask;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package games.twentyfaces.accountmanager;
|
||||
package games.dmg.accountmanager;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
+1
-1
@@ -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;
|
||||
Reference in New Issue
Block a user