rules_jvm_external icon indicating copy to clipboard operation
rules_jvm_external copied to clipboard

Bazel rules to resolve, fetch and export Maven artifacts

Results 259 rules_jvm_external issues
Sort by recently updated
recently updated
newest added

Gradle supports [dependencies substitution](https://docs.gradle.org/current/userguide/resolution_rules.html#sec:dependency_substitution_rules ) when resolving transitive closures. Having this support in rules_jvm_external could greatly facilitate project migration from gradle to Bazel.

Windows 10 Bazel 1.2.1 rules_jvm_external 3.0 and 2.10 were tried. I have a small project that uses rules_jvm_external. If I run `bazel build //...` Then everything works fine with just...

type: bug
help wanted
os:windows

I'm looking to migrate our multi module maven project to bazel. Have hit a bit of a snag around transitive dependencies though that I'd love some advice on. In my...

I'm curious to know if handling 3rd party software licenses is on the roadmap and what the recommended ways of handling licenses are. Ideally the generated targets would use [rules_license](https://github.com/bazelbuild/rules_license)...

``` java_grpc_library( name = "helloworld_java_grpc", srcs = [":helloworld_proto"], deps = [":helloworld_java_proto"], ) java_export( name = "example-export", maven_coordinates = "com.test:helloworld:v3", runtime_deps = [ "//helloworld/v1:helloworld_java_grpc", ], ) ``` bazel run, returns ``...

In one of our projects, we use Shibboleth. Shibboleth has its own Maven repository, and some of the jars are only hosted there. Others are hosted both there and on...

Currently `java_export` does not support the generation of `maven-metadata.xml`. This is useful for anyone who's hosting `m2` repo privately, on GCS for example, instead of using Artifactory. Gradle and Maven...

Right now, all dependencies are downloaded into `@maven` workspace. This is great, until we need to include an annotation processor as a `java_plugin`: then we need to break out of...

type: feature request

I am working with a Bazel project in Intellij which fetches maven dependencies. I have followed the below link to use maven dependencies in Bazel: https://github.com/bazelbuild/rules_jvm_external/releases/tag/4.0 I am using Junit...

Hello, I added the `fetch_sources = True,` option to the `maven_install` rule but I cannot find the loaded sources jar on my machine. Other than this problem everything is working...