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

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

java_library(
    name = "junit-ssh",
    testonly = 1,
    srcs = glob(["src/**/*.java"]),
    resource_strip_prefix = "org.eclipse.jgit.junit.ssh/resources",
    resources = glob(["resources/**"]),
    deps = [
        "//lib:sshd-core",
        "//lib:sshd-sftp",
        # We want these deps to be provided_deps
        "//org.eclipse.jgit:jgit",
    ],
)

Back to the top