refactor ig

This commit is contained in:
kento2 2026-08-04 02:30:41 +02:00
parent ef32f9dbc4
commit 336ac4cad5
54 changed files with 528 additions and 444 deletions

15
bukkit/BUILD Normal file
View file

@ -0,0 +1,15 @@
load("@rules_jvm_external//:defs.bzl", "artifact", "java_export")
java_export(
name = "bukkit",
maven_coordinates = "de.kentoj.scrow:kencommandapi-bukkit:0.34-SNAPSHOT",
srcs = glob(["src/main/**/*.java"]),
deps = [
"//core",
artifact("org.jetbrains:annotations"),
artifact("io.papermc.paper:paper-api"),
],
exports = [
"//core",
],
)