Guest User

Untitled

a guest
Jan 14th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Understanding Gradle's mavenDeployer
  2. uploadArchives {
  3. repositories.mavenDeployer {
  4. name = 'sshDeployer' // optional
  5. configuration = configurations.deployerJars
  6. repository(url: "scp://repos.mycompany.com/releases") {
  7. authentication(userName: "me", password: "myPassword")
  8. }
  9. }
  10. }
  11.  
  12. repository(url: "scp://repos.mycompany.com/releases") {
  13. authentication(userName: "me", password: "myPassword")
  14. }
Add Comment
Please, Sign In to add comment