Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e2543220ae0b6517b807cad673c5b69dd456248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
java_library(
  name = 'junit',
  srcs = glob(['src/**']),
  resources = glob(['resources/**']),
  provided_deps = [
    '//org.eclipse.jgit:jgit',
    '//lib:junit',
  ],
  visibility = ['PUBLIC'],
)

Back to the top