fix package names
Some checks failed
/ test (push) Failing after 51s
/ deploy (push) Has been skipped

This commit is contained in:
kento2 2026-08-29 02:12:18 +02:00
parent dc275ad6bd
commit c03afc9ddf
9 changed files with 14 additions and 4 deletions

View file

@ -5,7 +5,7 @@ load("//:defs.bzl", "GROUP", "VERSION")
java_export(
name = "common",
maven_coordinates = GROUP + ":commands-common:" + VERSION,
srcs = glob(["site/lab0x13/scrow/**/*.java"]),
srcs = glob(["site/lab0x13/scrow/commands/**/*.java"]),
visibility = ["//visibility:public"],
deps = COMMON_DEPS,
exports = COMMON_DEPS_EXPORT,

View file

@ -1,2 +1,2 @@
GROUP = "site.lab0x13.scrow"
VERSION = "0.7"
VERSION = "1.0.0"

View file

@ -1,3 +1,5 @@
package site.lab0x13.scrow.commands.velocity;
import com.velocitypowered.api.command.CommandSource;
@FunctionalInterface

View file

@ -1,3 +1,5 @@
package site.lab0x13.scrow.commands.velocity;
import com.velocitypowered.api.proxy.ProxyServer;
import site.lab0x13.scrow.commands.CommandHandler;
import site.lab0x13.scrow.commands.IScrowCommands;

View file

@ -1,3 +1,5 @@
package site.lab0x13.scrow.commands.velocity;
import com.velocitypowered.api.command.RawCommand;
import site.lab0x13.scrow.commands.CommandHandler;
import site.lab0x13.scrow.commands.model.literal.RootLiteral;

View file

@ -1,3 +1,5 @@
package site.lab0x13.scrow.commands.velocity;
import com.velocitypowered.api.command.CommandSource;
import com.velocitypowered.api.proxy.Player;
import site.lab0x13.scrow.commands.model.AbstractCommandContext;

View file

@ -1,3 +1,5 @@
package site.lab0x13.scrow.commands.velocity;
import net.kyori.adventure.text.Component;
import site.lab0x13.scrow.commands.PlatformAdapter;

View file

@ -1,4 +1,4 @@
package suggestionprovider;
package site.lab0x13.scrow.commands.velocity.suggestionprovider;
import com.velocitypowered.api.proxy.Player;
import com.velocitypowered.api.proxy.ProxyServer;

View file

@ -1,4 +1,4 @@
package type;
package site.lab0x13.scrow.commands.velocity.type;
import com.leakyabstractions.result.api.Result;
import com.leakyabstractions.result.core.Results;