Skip to main content
summaryrefslogtreecommitdiffstats
blob: f8aa44db94b040f2dc47962637e05153753f8961 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load("@rules_java//java:defs.bzl", "java_library")

package(default_visibility = ["//visibility:public"])

java_library(
    name = "jgit-servlet",
    srcs = glob(["src/**/*.java"]),
    resource_strip_prefix = "org.eclipse.jgit.http.server/resources",
    resources = glob(["resources/**"]),
    deps = [
        "//lib:servlet-api",
        # We want these deps to be provided_deps
        "//org.eclipse.jgit:jgit",
    ],
)

Back to the top