Skip to content

v0.10.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 27 Nov 11:09
b2bdd9e

Using Bzlmod

  1. Enable with common --enable_bzlmod in .bazelrc.
  2. Add to your MODULE.bazel file:
bazel_dep(name = "rules_jni", version = "0.10.3")

Using WORKSPACE

Paste this snippet into your WORKSPACE.bazel file:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "rules_jni",
    sha256 = "41ddb7aa6fd134e2c66ffee9dde07e4dbf52fee2f93ef9184c4019f1d3b4e6a1",
    strip_prefix = "rules_jni-0.10.3",
    url = "https://github.com/fmeum/rules_jni/releases/download/v0.10.3/rules_jni-v0.10.3.tar.gz",
)

What's Changed

Full Changelog: v0.10.2...v0.10.3