Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. repositories {
  2. jcenter()
  3.  
  4. maven {
  5. credentials {
  6. username = 'bintrayUser1'
  7. password = 'bintrayAPIKeyForUser1'
  8. }
  9. url "https://url-to-projectA"
  10. }
  11. }
  12.  
  13. dependencies {
  14. compile fileTree(dir: 'libs', include: ['*.jar'])
  15. testCompile 'junit:junit:4.12'
  16. compile 'com.project:A:1.0.0'
  17. }
  18.  
  19. allprojects {
  20. repositories {
  21. jcenter()
  22. maven {
  23. url "https://link-to-projectB"
  24. credentials {
  25. username = 'bintrayUser2'
  26. password = 'bintrayAPIKeyForUser2'
  27. }
  28. }
  29. }
  30. }
  31.  
  32. dependencies {
  33. compile fileTree(dir: 'libs', include: ['*.jar'])
  34. testCompile 'junit:junit:4.12'
  35. compile 'com.project:B:1.0.0'
  36. }
  37.  
  38. allprojects {
  39. repositories {
  40. jcenter()
  41. maven {
  42. url "https://link-to-projectA"
  43. credentials {
  44. username = 'bintrayUser2'
  45. password = 'bintrayAPIKeyForUser2'
  46. }
  47. }
  48. maven {
  49. url "https://link-to-projectB"
  50. credentials {
  51. username = 'bintrayUser2'
  52. password = 'bintrayAPIKeyForUser2'
  53. }
  54. }
  55. maven {
  56. url "https://link-to-projectX"
  57. credentials {
  58. username = 'bintrayUser2'
  59. password = 'bintrayAPIKeyForUser2'
  60. }
  61. }
  62. maven {
  63. url "https://link-to-projectX"
  64. credentials {
  65. username = 'bintrayUser2'
  66. password = 'bintrayAPIKeyForUser2'
  67. }
  68. }
  69. maven {
  70. url "https://link-to-projectX"
  71. credentials {
  72. username = 'bintrayUser2'
  73. password = 'bintrayAPIKeyForUser2'
  74. }
  75. }
  76. }
  77. }
  78.  
  79. dependencies {
  80. compile fileTree(dir: 'libs', include: ['*.jar'])
  81. testCompile 'junit:junit:4.12'
  82. compile 'com.project:B:1.0.0'
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement