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

16
common/tests/BUILD.bazel Normal file
View file

@ -0,0 +1,16 @@
load("@contrib_rules_jvm//java:defs.bzl", "java_test_suite", "JUNIT5_DEPS")
load("@rules_jvm_external//:defs.bzl", "artifact")
load("//common:deps.bzl", "COMMON_DEPS")
java_test_suite(
name = "all_tests",
srcs = glob(["**/*.java"]),
test_suffixes = ["Test.java"],
runner = "junit5",
size = "small",
deps = [
"//common",
artifact("net.kyori:adventure-text-serializer-plain"),
artifact("org.junit.jupiter:junit-jupiter-api"),
] + JUNIT5_DEPS + COMMON_DEPS,
)