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
Currently, the shrinkwrap API does not (seem to) support programmatic authentication for RemoteRepos but only credentials integration via maven settings.
It would be great if we could use also the API to provide credentials, e.g. when adding a repo to a resolver instance
val resolver = Maven.configureResolver().withMavenCentralRepo(true)
.withRemoteRepo("jcenter", "https://jcenter.bintray.com/", "default", "<USERNAME>", "<PASSWORD>")
(The last 2 args are just mock and are not supported yet)