Skip to content

Commit

Permalink
Update gmaven.bzl snapshot to 13 May 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
jin committed May 13, 2018
1 parent 4f88f9c commit a0cf83c
Show file tree
Hide file tree
Showing 2 changed files with 14,650 additions and 8,092 deletions.
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@ AAR support is added to [bazel-deps](https://github.com/johnynek/bazel-deps).
To use this from your project, in your `WORKSPACE` file add

```
git_repository(
name = 'gmaven_rules',
remote = 'https://github.com/aj-michael/gmaven_rules',
commit = '<FILL IN A COMMIT HERE>',
# Google Maven Repository
GMAVEN_TAG = "0.1.0"
http_archive(
name = "gmaven_rules",
strip_prefix = "gmaven_rules-%s" % GMAVEN_TAG,
url = "https://github.com/bazelbuild/gmaven_rules/archive/%s.tar.gz" % GMAVEN_TAG,
)
load('@gmaven_rules//:gmaven.bzl', 'gmaven_rules')
load("@gmaven_rules//:gmaven.bzl", "gmaven_rules")
gmaven_rules()
```

Expand Down
Loading

0 comments on commit a0cf83c

Please sign in to comment.