JarJar rules for Bazel (rename packages and classes in existing jars)
This rule uses Jar Jar Abrams, whose repo also maintains a forked/vendored Jar Jar Links. The main use case is to use more than one version of a jar at a time with different versions mapped to a different package. It can also be used to do dependency shading.
bazel_dep(name = "bazel_jar_jar", version = "0.1.0") # Latest version as of 2023/10/31
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "com_github_johnynek_bazel_jar_jar",
commit = "4e7bf26da8bc8c955578fd8c8a2c763757d344df", # Latest commit SHA as of 2023/10/31
remote = "https://github.com/johnynek/bazel_jar_jar.git",
)
load(
"@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl",
"jar_jar_repositories",
)
jar_jar_repositories()
Note: Example code exists in
test/example
Specify a rule in a file that will remap one package path into another. For example:
rule com.twitter.scalding.** foo.@1
Note: See Rules File Formatting for formatting details
Put that file in the same directory as the Bazel BUILD
file that will specify the jar_jar
rules. Reference that file in the rules
field of the jar_jar
rule.
jar_jar(
name = "shaded_args",
input_jar = "@com_twitter_scalding_args//jar",
rules = "<FILENAME>"
)
The input_jar
specifies the package that will be relocated. name
is the target label to be used in place of the original package target label.
The optional output_jar
field specifies the name of the output jar. If not specified, the output jar will be named <name>.jar
.
Alternately, if you don't want to put the rules in a file, you can put the shading rules inline directly in the rule. These follow the same rules file formatting as below, with each entry in the array acting as a line in the file.
jar_jar(
name = "shaded_args",
input_jar = "@com_twitter_scalding_args//jar",
inline_rules = ["rule com.twitter.scalding.** foo.@1"]
inline_rules
and rules
referring to a file are exclusive options; you can only have one or the other in your rule. You must have one of them.
Make sure to change any references in your code from the original package path to the new shaded package path. For example: import com.twitter.scalding.Args
becomes import foo.Args
.
In addition to building a single output jar, there is also an aspect that can be used in your own custom rules to
transform a large graph, or the thin_jar_jar rule. This has the added benefit of per-rule caching, which can be considerably more efficient in large repos.
See the thin_jar_jar.bzl
rule and the test/jar_jar_apect
for an example of setting this up.
Rules file format The rules file is a text file, one rule per line. Leading and trailing whitespace is ignored. There are three types of rules:
rule <pattern> <result>
zap <pattern>
keep <pattern>
The standard rule (rule) is used to rename classes. All references to the renamed classes will also be updated. If a class name is matched by more than one rule, only the first one will apply.
<pattern>
is a class name with optional wildcards. **
will match against any valid class name substring. To match a single package component (by excluding . from the match), a single * may be used instead.
<result>
is a class name which can optionally reference the substrings matched by the wildcards. A numbered reference is available for every *
or **
in the <pattern>
, starting from left to right: @1
, @2
, etc. A special @0
reference contains the entire matched class name.
The zap rule causes any matched class to be removed from the resulting jar file. All zap rules are processed before renaming rules.
The keep rule marks all matched classes as "roots". If any keep rules are defined all classes which are not reachable from the roots via dependency analysis are discarded when writing the output jar. This is the last step in the process, after renaming and zapping.