Guest User

Untitled

a guest
Feb 12th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. gradlew.bat build artifactoryPublish
  2.  
  3. artifactory {
  4. contextUrl = "${artifactory_contextUrl}" //The base Artifactory URL if not overridden by the publisher/resolver
  5. publish {
  6. repository {
  7. repoKey = 'libs-release-local'
  8. username = "${artifactory_user}"
  9. password = "${artifactory_password}"
  10. maven = true
  11. }
  12. }
  13. resolve {
  14. repository {
  15. repoKey = 'libs-release'
  16. username = "${artifactory_user}"
  17. password = "${artifactory_password}"
  18. maven = true
  19. }
  20. }
  21. }
  22.  
  23. org.gradle.jvmargs=-Xmx1024m
  24. artifactory_user=${security.getCurrentUsername()}
  25. artifactory_password=${security.getEncryptedPassword()!"*****what_lookes_like_my_encrypted_password****"}
  26. artifactory_contextUrl=http://10.0.1.4:8081/artifactory
  27. org.gradle.java.home=C:\Program Files\Java\jdk1.8.0_162
  28. android.enableAapt2=false
Add Comment
Please, Sign In to add comment