Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ae170324e31f00f0a55174286cad797c841a0a28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
java_library(
  name = 'jgit-archive',
  srcs = glob(
    ['src/**'],
    excludes = ['src/org/eclipse/jgit/archive/FormatActivator.java'],
  ),
  resources = glob(['resources/**']),
  provided_deps = [
    '//org.eclipse.jgit:jgit',
    '//lib:commons-compress',
  ],
  visibility = ['PUBLIC'],
)

Back to the top