summaryrefslogtreecommitdiffstats
path: root/tools/nongoogle.bzl
blob: 2e84717abb5119bddef751a343341644fc2edf61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
load("//tools/bzl:maven_jar.bzl", "maven_jar")

def declare_nongoogle_deps():
    """loads dependencies that are not used at Google.

    Changes to versions are exempt from library compliance review. New
    dependencies must pass through library compliance review. This is
    enforced by //lib:nongoogle_test.
    """

    # Transitive dependency of commons-compress
    maven_jar(
        name = "tukaani-xz",
        artifact = "org.tukaani:xz:1.6",
        sha1 = "05b6f921f1810bdf90e25471968f741f87168b64",
    )