rules_jvm_external
rules_jvm_external copied to clipboard
Bazel rules to resolve, fetch and export Maven artifacts
When using multiple repositories, the assumption is that the repositories will be iterated in order and a dependency will be resolved from the first that succeeds. Failing to find a...
This option is off by default on Windows and breaks assumptions about the working directory in `pin.sh`. You'll end up with some totally confusing output like this: ``` + set...
Coursier supports Ivy repo patterns, and this almost works out-of-the-box with these rules, but I ran into one place that needs special handling.
Our users are requesting a feature such that they may be able to better understand which transitive dependencies were overridden. For example, imagine a maven_install rule specifies top-level artifacts A,...
This old [discussion](https://groups.google.com/g/bazel-discuss/c/M3m-nGoU6qc) explains the issue. Using the example gist I created a newer [gist](https://gist.github.com/gramic/d7828470085b50db986eba6fb1b20b9a) that demonstrates it using rules_jvm_external. Not sure where this is a regression or there is...
Hey, I have an issue related to netrc file. When credentials in netrc file are changed, bazel still uses the old ones. Version of **bezel 2.2.0**. **Initial situation** When building...
First and foremost, thanks for such a useful set of rules! I was using this for an Android project and noticed an edge case that I thought I should give...
There's API documentation, sure, but no examples of use in a BUILD file.
We are using this to avoid java versions mismatch between environments (where some machines may have jdk1.8 or jdk14 instead of jdk11), which causes pinning to generate different results. A...
Basically, I'd like to replicate what is possible on Gradle via ```groovy repositories { mavenLocal() maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from...