Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 73e2080576ffcd6b42e6167a1b337b15761a5846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SRCS = glob(['src/**'])
RESOURCES = glob(['resources/**'])

java_library(
  name = 'jgit',
  srcs = SRCS,
  resources = RESOURCES,
  deps = [
    '//lib:javaewah',
    '//lib:jsch',
    '//lib:httpcomponents',
    '//lib:slf4j-api',
  ],
  visibility = ['PUBLIC'],
)

java_sources(
  name = 'jgit_src',
  srcs = SRCS + RESOURCES,
)

Back to the top