Advertisement
Guest User

Untitled

a guest
Oct 14th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. configurations {
  2. deployerJars
  3. }
  4. dependencies {
  5. ...
  6. deployerJars 'org.apache.maven.wagon:wagon-ssh:2.2+'
  7. }
  8.  
  9. uploadArchives {
  10. repositories {
  11. mavenDeployer {
  12. configuration = configurations.deployerJars
  13. repository(url: "scp://{server}/var/www/maven") {
  14. authentication(userName: "myUsername", password: "myPassword")
  15. }
  16. pom.version = '0.1.0'
  17. pom.groupId = 'com.mycompany'
  18. pom.artifactId = 'mylib'
  19.  
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement