mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-30 16:42:07 +00:00
08e8c6c93d
* Sorted dependencies * Added rules_android repository to satisfy buildifier defects * Added rules_cc repository to satisfy buildifier defects * Ran Buildifier
17 lines
517 B
Python
17 lines
517 B
Python
"""A module for bringing in transitive dependencies of rules_jvm_external"""
|
|
|
|
load("@rules_jvm_external//:defs.bzl", "maven_install")
|
|
|
|
def deps_jvm_external():
|
|
maven_install(
|
|
artifacts = [
|
|
"com.android.support.constraint:constraint-layout:aar:1.1.2",
|
|
"com.android.support:appcompat-v7:aar:26.1.0",
|
|
],
|
|
repositories = [
|
|
"https://jcenter.bintray.com/",
|
|
"https://maven.google.com",
|
|
"https://repo1.maven.org/maven2",
|
|
],
|
|
)
|