initial commit
Some checks failed
Build and Deploy artifact / build (push) Failing after 11s

This commit is contained in:
kento2 2026-08-25 15:37:39 +02:00
commit 7c322707ba
51 changed files with 1488 additions and 0 deletions

14
common/deps.bzl Normal file
View file

@ -0,0 +1,14 @@
load("@rules_jvm_external//:defs.bzl", "artifact")
COMMON_DEPS = [
artifact("org.jetbrains:annotations"),
artifact("com.google.guava:guava"),
artifact("net.kyori:adventure-api"),
artifact("com.leakyabstractions:result-api"),
artifact("com.leakyabstractions:result"),
]
COMMON_DEPS_EXPORT = [
artifact("com.leakyabstractions:result-api"),
artifact("com.leakyabstractions:result"),
]