Skip to content

Releases: bazeltools/bazel_jar_jar

0.1.5

16 Mar 21:29
v0.1.5
6e8e6e5
Compare
Choose a tag to compare

0.1.1 failed to publish to BCR, 0.1.5 is identical to 0.1.1.

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc (default with Bazel 7).
  2. Add to your MODULE.bazel file:
bazel_dep(name = "bazel_jar_jar", version = "0.1.5")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_jar_jar",
    sha256 = "a9d2ca9a2e9014f8d63dcbe9091bcb9f2d2929b3b7d16836c6225e98f9ca54df",
    strip_prefix = "bazel_jar_jar-0.1.5",
    url = "https://github.com/bazeltools/bazel_jar_jar/releases/download/v0.1.5/bazel_jar_jar-v0.1.5.tar.gz",
)

load(
    "@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl",
    "jar_jar_repositories",
)

jar_jar_repositories()

What's Changed

Behind the scenes

  • Fix BCR submission: rule fails the test with Bazel 5.x by @eed3si9n in #50
  • Remove test_targets from BCR presubmit by @fmeum in #43

New Contributors

Full Changelog: v0.1.0...v0.1.5

0.1.1

14 Mar 19:11
68d9d69
Compare
Choose a tag to compare
0.1.1 Pre-release
Pre-release

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc (default with Bazel 7).
  2. Add to your MODULE.bazel file:
bazel_dep(name = "bazel_jar_jar", version = "0.1.1")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_jar_jar",
    sha256 = "2090e7cf6d67d3f08ebfda155c335b66c3615bfefbe13e6832267e6bca446b31",
    strip_prefix = "bazel_jar_jar-0.1.1",
    url = "https://github.com/bazeltools/bazel_jar_jar/releases/download/v0.1.1/bazel_jar_jar-v0.1.1.tar.gz",
)

load(
    "@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl",
    "jar_jar_repositories",
)

jar_jar_repositories()

What's Changed

New Contributors

Full Changelog: v0.1.0...v0.1.1

0.1.0

03 Dec 17:58
v0.1.0
146169b
Compare
Choose a tag to compare

This is the initial tagged release of bazel_jar_jar, a Bazel rule to create shaded JAR.

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc (default with Bazel 7).
  2. Add to your MODULE.bazel file:
bazel_dep(name = "bazel_jar_jar", version = "0.1.0")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_jar_jar",
    sha256 = "f766a2143bf11f70a7de67798db6cd3851fedc77b7037162e052fee6207fa5ca",
    strip_prefix = "bazel_jar_jar-0.1.0",
    url = "https://github.com/bazeltools/bazel_jar_jar/releases/download/v0.1.0/bazel_jar_jar-v0.1.0.tar.gz",
)

load(
    "@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl",
    "jar_jar_repositories",
)

jar_jar_repositories()

Updates

New Contributors

Full Changelog: https://github.com/bazeltools/bazel_jar_jar/commits/v0.1.0