Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. maven {
  4. credentials {
  5. username mavenUser
  6. password mavenPassword
  7. }
  8. url 'http://infynexus/nexus/content/groups/Manoj.P04/'
  9. }
  10.  
  11. }
  12.  
  13.  
  14. dependencies {
  15. classpath 'com.android.tools.build:gradle:2.3.3'
  16.  
  17. // NOTE: Do not place your application dependencies here; they belong
  18. // in the individual module build.gradle files
  19. }
  20. }
  21.  
  22. allprojects {
  23. repositories {
  24. maven {
  25. credentials {
  26. username mavenUser
  27. password mavenPassword
  28. }
  29. url 'infynexus/nexus/content/groups/Manoj.P04/'
  30. }
  31.  
  32. task clean(type: Delete) {
  33. delete rootProject.buildDir
  34. }
  35. }
  36. }
  37.  
  38. org.gradle.jvmargs=-Xmx1536m
  39.  
  40. mavenUser=xxxx
  41. mavenPassword=xxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement