An artifact repository which supports username/password authentication.
Type | Name and description |
---|---|
void |
credentials(Closure closure) Configure the credentials for this repository using the supplied Closure. |
void |
credentials(Action<? super PasswordCredentials> action) Configure the credentials for this repository using the supplied action. |
PasswordCredentials |
getCredentials() Returns the credentials used to authenticate to this repository. |
Configure the credentials for this repository using the supplied Closure.
repositories { maven { credentials { username = 'joe' password = 'secret' } } }
Configure the credentials for this repository using the supplied action.
repositories { maven { credentials { username = 'joe' password = 'secret' } } }
Returns the credentials used to authenticate to this repository.