• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • bucklets
  • remote_jar.bucklet
  • Brian O'Connor's avatar
    Adding remote_jar bucklet · 4443ffba ...
    4443ffba
    Change-Id: I925c3b56158709195e4b5e1278de325cac013090
    Brian O'Connor authored 2016-04-29 18:23:18 -0700
remote_jar.bucklet 417 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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 = []
    )