Advertisement
Guest User

Untitled

a guest
Mar 10th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:1.5.0'
  9. classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.0.0'
  10.  
  11. // NOTE: Do not place your application dependencies here; they belong
  12. // in the individual module build.gradle files
  13. }
  14. }
  15.  
  16. allprojects {
  17. repositories {
  18. jcenter()
  19. }
  20. }
  21.  
  22. apply plugin: 'maven-publish'
  23. apply plugin: 'com.jfrog.artifactory'
  24.  
  25. artifactory {
  26. contextUrl = "${artifactory_url}"
  27. publish {
  28. repository {
  29. repoKey = 'libs-release-local'
  30.  
  31. username = "${artifactory_username}"
  32. password = "${artifactory_password}"
  33. }
  34. defaults {
  35. publications('SharedCode', 'Android')
  36. publishArtifacts = true
  37. properties = ['qa.level': 'basic', 'dev.team': 'core']
  38. publishPom = true
  39. }
  40. }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement