Matthias Sohn | 3bae524 | 2015-12-22 16:11:43 +0100 | [diff] [blame] | 1 | SRCS = glob(['src/**']) |
2 | RESOURCES = glob(['resources/**']) | ||||
3 | |||||
4 | java_library( | ||||
5 | name = 'jgit-lfs-server', | ||||
6 | srcs = SRCS, | ||||
7 | resources = RESOURCES, | ||||
8 | deps = [ | ||||
9 | '//org.eclipse.jgit.http.apache:http-apache', | ||||
10 | '//org.eclipse.jgit:jgit', | ||||
11 | '//org.eclipse.jgit.lfs:jgit-lfs', | ||||
12 | '//lib:gson', | ||||
13 | '//lib:httpcore', | ||||
14 | '//lib:servlet-api' | ||||
15 | ], | ||||
16 | visibility = ['PUBLIC'], | ||||
17 | ) | ||||
18 | |||||
19 | java_sources( | ||||
20 | name = 'jgit-lfs-server_src', | ||||
21 | srcs = SRCS + RESOURCES, | ||||
22 | ) |