Skip to content

v0.10.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 26 Nov 21:40
· 1 commit to main since this release
8670937

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

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 = "0483aa305bffc8968591330f7efa5805d4dc37b8fc8d083f3cff1f63928abf37",
    strip_prefix = "rules_jni-0.10.2",
    url = "https://github.com/fmeum/rules_jni/releases/download/v0.10.2/rules_jni-v0.10.2.tar.gz",
)

What's Changed

Full Changelog: v0.10.1...v0.10.2