2015-09-24 18:27:43 +03:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2015-10-27 02:00:09 +03:00
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
2015-09-24 18:27:43 +03:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2016-03-18 22:21:30 +03:00
|
|
|
classpath 'com.android.tools.build:gradle:2.1.0-alpha3'
|
2015-12-16 17:37:00 +03:00
|
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
|
2015-11-29 01:32:13 +03:00
|
|
|
classpath 'me.tatarka:gradle-retrolambda:3.2.4'
|
2016-01-16 20:10:05 +03:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.12.0'
|
2015-09-24 18:27:43 +03:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2015-11-02 16:42:08 +03:00
|
|
|
maven { url "https://clojars.org/repo/" }
|
2015-12-07 17:53:01 +03:00
|
|
|
maven { url "https://jitpack.io" }
|
2015-09-24 18:27:43 +03:00
|
|
|
}
|
|
|
|
}
|