You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BUILD 317B

1234567891011
  1. load("@rules_java//java:defs.bzl", "java_library")
  2. package(default_visibility = ["//visibility:public"])
  3. java_library(
  4. name = "ui",
  5. srcs = glob(["src/**/*.java"]),
  6. resource_strip_prefix = "org.eclipse.jgit.ui/resources",
  7. resources = glob(["resources/**"]),
  8. deps = ["//org.eclipse.jgit:jgit"],
  9. )