Skip to content

Releases: bazelbuild/rules_jvm_external

May 13, 2018 Snapshot 1

13 May 18:33
@jin jin
Compare
Choose a tag to compare

To use, add this snippet in your WORKSPACE file:

# Google Maven Repository
GMAVEN_TAG = "20180513-1"

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")

gmaven_rules()

0.1.0

16 Apr 10:07
@jin jin
ff873bf
Compare
Choose a tag to compare

Changes in this release:

  • gmaven.bzl updated as of April 13, 2018
  • maven is no longer required to download artifacts.
  • Artifacts are no longer cached in the local Maven repository (usually ~/.m2), since the underlying downloading mechanism is switched to direct HTTP. Instead, use --repository_cache or --experimental_distdir to cache downloaded artifacts. See Bazel's Build Options for more information.

0.0.1

13 Apr 09:49
@jin jin
38ccebc
Compare
Choose a tag to compare

Initial release of gmaven_rules.