build.gradle 836 B

12345678910111213141516171819202122232425
  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. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:1.5.0'
  9. classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.+'
  10. classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
  11. classpath 'me.tatarka:gradle-retrolambda:3.2.4'
  12. classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
  13. // NOTE: Do not place your application dependencies here; they belong
  14. // in the individual module build.gradle files
  15. }
  16. }
  17. allprojects {
  18. repositories {
  19. jcenter()
  20. maven { url "https://clojars.org/repo/" }
  21. maven { url "https://jitpack.io" }
  22. }
  23. }