rules_maven
rules_maven copied to clipboard
Transitive maven dependencies with Bazel.
I am trying to use different configurations in the maven_repository, here is my WORKSPACE: load("@org_pubref_rules_maven//maven:rules.bzl", "maven_repositories", "maven_repository") maven_repositories() maven_repository( name = "dji_sdk_provided", deps = [ "com.dji:dji-sdk-provided:4.9", ], configurations=["compileOnly"], ) load("@dji_sdk_provided//:rules.bzl",...
I.e., if I have a folder `//third_party/foo` that has `pom.xml`, `foo.jar`, `foo-sources.jar`, etc, can I use it and still get the transitive dependency resolution? Or can I only depend on...
I can't seem to get anything to load from [http://oss.sonatype.org/content/repositories/snapshots](http://oss.sonatype.org/content/repositories/snapshots). Is there a way to properly load snapshots, also, is there a 'nice' way to do this without needing to...
I'm hoping we can work some parts of the dependency management approach here into bazel core. Bridge to issue in [bazel core / migration-tooling](https://github.com/bazelbuild/migration-tooling/issues/54#issue-252927144).