mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This primarily fixes up the bazel publishing to match the gradle publishing again, as some new libraries were added but not hooked up to the maven publishing. During the process, I noticed that the 3rd party libraries (googletest, catch2, and imgui_suite) were still getting published on the old `edu.wpi` namespace. I tried to clean up all the other references to that that I could. Note: opencv and libssh are handled outside `allwpilib` so they need to be updated separately.
11 lines
304 B
Python
11 lines
304 B
Python
load("//shared/bazel/rules:java_rules.bzl", "wpilib_java_library")
|
|
|
|
wpilib_java_library(
|
|
name = "wpiannotations",
|
|
srcs = glob(["src/main/java/**/*.java"]),
|
|
maven_artifact_name = "annotations-java",
|
|
maven_group_id = "org.wpilib",
|
|
visibility = ["//visibility:public"],
|
|
deps = [],
|
|
)
|