build.gradle 1.0 KB

12345678910111213141516171819202122232425262728
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply plugin: 'com.github.ben-manes.versions'
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. maven {
  7. url 'https://repos.zeroturnaround.com/nexus/content/repositories/zt-public-releases'
  8. }
  9. }
  10. dependencies {
  11. classpath 'com.android.tools.build:gradle:1.3.0'
  12. // This does not break the build when Android Studio is missing the JRebel for Android plugin.
  13. classpath 'com.zeroturnaround.jrebel.android:jr-android-gradle:0.9.+'
  14. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
  15. classpath 'me.tatarka:gradle-retrolambda:3.2.3'
  16. classpath 'com.github.ben-manes:gradle-versions-plugin:0.11.3'
  17. // NOTE: Do not place your application dependencies here; they belong
  18. // in the individual module build.gradle files
  19. }
  20. }
  21. allprojects {
  22. repositories {
  23. jcenter()
  24. maven {url "https://clojars.org/repo/"}
  25. }
  26. }