
This is to prepare for implementing genlicenses rule in bazel. Change-Id: I60d79d5b53f9dd05c9f9ebfe6e6f658604c5a037
16 lines
367 B
Python
16 lines
367 B
Python
load('//tools/bzl:unsign.bzl', 'unsign_jars')
|
|
|
|
java_library(
|
|
name = 'junit-signed',
|
|
exports = ['@jgit_junit//jar'],
|
|
runtime_deps = ['//lib/jgit/org.eclipse.jgit:jgit'],
|
|
visibility = ['//visibility:public'],
|
|
data = ['//lib:LICENSE-DO_NOT_DISTRIBUTE'],
|
|
)
|
|
|
|
unsign_jars(
|
|
name = 'junit',
|
|
deps = [':junit-signed'],
|
|
visibility = ['//visibility:public'],
|
|
)
|