build.gradle 719 B

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