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

java_library(
  name = 'jgit-lfs-server',
  srcs = SRCS,
  resources = RESOURCES,
  deps = [
    '//org.eclipse.jgit.http.apache:http-apache',
    '//org.eclipse.jgit:jgit',
    '//org.eclipse.jgit.lfs:jgit-lfs',
    '//lib:gson',
    '//lib:httpcore',
    '//lib:servlet-api'
  ],
  visibility = ['PUBLIC'],
)

java_sources(
  name = 'jgit-lfs-server_src',
  srcs = SRCS + RESOURCES,
)

Back to the top