Advertisement
Guest User

Untitled

a guest
Sep 7th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. uploadArchives {
  2. repositories {
  3. mavenDeployer {
  4. repository(url: 'http://nexus-host/nexus/content/releases/') {
  5. authentication(userName: System.getenv('RELEASE_USER'), password: System.getenv('RELEASE_PWD'));
  6. }
  7. snapshotRepository(url: 'http://nexus-host/nexus/content/snapshots/') {
  8. authentication(userName: System.getenv('SNAPSHOT_USER'), password: System.getenv('SNAPSHOT_PWD'));
  9. }
  10. }
  11. }
  12. }
  13.  
  14. ./gradlew uploadArchives
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement