Replies: 1 comment 1 reply
-
It would be great if there was something in the Coursier implementation which would allow us to mirror directly the handling in sbt. For example when you are behind a proxy like I am for work we use sbt proxy repository configuration; however, it isn't clear how to do this for mill since it seems to be a mismatch of vanilla Coursier configuration that doesn't seem to always carry over (i.e. in workers or forked JVMs). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Our current coursier integration has some flaws.
I think the cleanest solution would be to let our
CoursierModule
use a Worker which encapsulates coursier, and refactor Mill API to no longer re-use any coursier API. This would give the greatest flexibility, but it's probably the most work. An alternative is to use newer Coursier high level API, but I'm still not sure whether this will fix all our issues. Especially, as this API is considered unstable upstream.Beta Was this translation helpful? Give feedback.
All reactions