I am trying to pull dependencies from azure blob storage in my sbt project but it is unable to resolve the dependencies
I tried below ways to pull the dependencies from blob storage
- By enabling the sftp protocol on blob storage the following way
resolvers += Resolver.sftp("my-sftp-repo", "example.org", 22)
this was not working so i added sftp credentials also as followsresolvers += Resolver.sftp("sftp-repo", "my.example.com:22") (Resolver.ivyStylePatterns) as ("username","password")
- By enabling the https connection also i tried and try to pass credentials from a file as follows
resolvers in Global += ("sftpRepo" at "https://mystorage.blob.core.windows.net/artifacts")
and password like this credentials inGlobal += Credentials(Path.userHome / ".ivy2" / "storage.credentials")
It giving error unable to find the dependencies from both local and CI/CD pipeline also.
But above two methods not working for me and i went through many questions on stackoverflow and sbt documentation but didn't worked.
Please let me know if anything i missed or how can i pull the dependencies from azure blob storage.