mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 09:21:06 +02:00
24 lines
417 B
Plaintext
24 lines
417 B
Plaintext
def remote_jar (
|
|
name,
|
|
out,
|
|
url,
|
|
sha1,
|
|
maven_coords = None,
|
|
visibility = [ 'PUBLIC' ],
|
|
):
|
|
|
|
prebuilt_jar(
|
|
name = name,
|
|
binary_jar = ':' + out,
|
|
maven_coords = maven_coords,
|
|
visibility = visibility,
|
|
)
|
|
|
|
remote_file(
|
|
name = out,
|
|
out = out,
|
|
url = url,
|
|
sha1 = sha1,
|
|
visibility = []
|
|
)
|