maven settings allows for configuring ssh authentication (key file, passphrase). Can gradle use this to resolve dependencies that are only available via SSH?
Unfortunately no, as Gradle does not currently support authenticating to SFTP repositories via private key and passphrase. Only username/password authentication is supported.
maven settings allows for configuring ssh authentication (key file, passphrase). Can gradle use this to resolve dependencies that are only available via SSH?