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

I have following setup in my `MODULE.bazel`: ``` bazel_dep(name = "rules_kotlin", version = "1.9.0") bazel_dep(name = "rules_jvm_external", version = "5.3") ``` Then in my `BUILD.bazel` I'm trying to use kt_jvm_export:...

This causes circular dependencies when processed by Bazel, but are processed without issue with Maven and Gradle. The contents here are mostly taken from https://github.com/grpc/grpc-java/issues/10576#issuecomment-1741257443 , so see it for...

My use case is, I have a bzl file with a function that returns a list of all our artifacts. The function is called for both the artifacts attr of...

cla: yes

I'm getting this error with the latest release (5.3): ``` Error: maven_install() got unexpected keyword argument: use_credentials_from_home_netrc_file ``` I'm not using `Bzlmod`. Has this parameter been removed?

Hi I have a problem to publish snapshot version, I saw in other tickets comments that `java_export` could publish snapshots but when I'm adding `-SNAPSHOT` to maven coordinates I'm getting...

when we set "neverlink=true" for 3rd party dependencies, eg `maven.artifact("io.swagger.core.v3", "swagger-jaxrs2", versions["swaggerJaxrs2"], neverlink = True)`, the "neverlink" property is only applied to the artifact itself and not propagated to transitive...

A few test targets in this project are using either `android_binary` or `aar_import` targets, and so need to be updated to work with Android platforms (https://github.com/bazelbuild/bazel/issues/16285). Test `//tests/unit/aar_import/...` is relatively...

``` (16:05:46) INFO: From Compiling compiler/src/java_plugin/cpp/java_generator.cpp [for tool]: --   | C:\b\54t5nytv\execroot\build_buildfarm\external\io_grpc_grpc_java\compiler\src\java_plugin\cpp\java_generator.h(35) : warning C4722: 'LogHelper::~LogHelper': destructor never returns, potential memory leak   | (16:05:47) ERROR: C:/b/yechmtpy/external/maven/BUILD:3188:11: Stamping the manifest of @maven//:org_projectlombok_lombok...

Currently the parameter `use_credentials_from_home_netrc_file` is not supported when using `rules_jvm_external` with bzlmod.

I have to override target to resolve my project ``` override_targets = { # Workaround for renamed dependencies https://github.com/bazelbuild/rules_jvm_external/issues/250 "org.apache.commons:commons-io": ":commons_io_commons_io", }, ``` How I can do this within bzlmod?