Is there a way to override the junit-runner jar us...
# general
p
Is there a way to override the junit-runner jar used?
w
@plain-river-51682: yes there is: those
register_jvm_tool
lines result in an optionally defined target at the root of the repo
so in this case, if you define a target named
junit
at the root of the repo (ie
//:junit
) it will override the default.
can confirm with
./pants help-advanced junit
p
Awesome, that works perfectly!
🤘 2