You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use bazel-deps to resolve maven dependencies on AWS S3 with coursier(see bazeltools/bazel-deps#275 and coursier/coursier#1488). If this works out, there's still something that I think it needs to be done here, I might be wrong, so bear with me.
Since bazel-deps puts the jars under //external:jar/, I'm assuming scala_maven_import_external needs to be able to recognise and download s3:// jar paths when building the project with such dependencies.
The text was updated successfully, but these errors were encountered:
scala_maven_import_external underneath uses repository_ctx.download. This recently got authentication support (1.2.1?).
I think these are the bits you need to get in place.
Don't know a lot more though.
Good luck.
I'm trying to use
bazel-deps
to resolve maven dependencies on AWS S3 withcoursier
(see bazeltools/bazel-deps#275 and coursier/coursier#1488). If this works out, there's still something that I think it needs to be done here, I might be wrong, so bear with me.Since
bazel-deps
puts the jars under//external:jar/
, I'm assumingscala_maven_import_external
needs to be able to recognise and downloads3://
jar paths when building the project with such dependencies.The text was updated successfully, but these errors were encountered: