2016-02-28 18:30:08 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2016-09-19 21:01:08 +02:00
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
|
|
2016-02-28 18:30:08 +01:00
|
|
|
buildscript {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2016-05-01 21:09:14 +02:00
|
|
|
maven { url 'http://repo1.maven.org/maven2' }
|
2016-02-28 18:30:08 +01:00
|
|
|
}
|
|
|
|
|
dependencies {
|
2017-01-17 23:59:09 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.2'
|
2016-09-19 21:01:08 +02:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
|
2016-02-28 18:30:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
|
repositories {
|
|
|
|
|
jcenter()
|
2016-05-01 21:09:14 +02:00
|
|
|
maven { url 'http://repo1.maven.org/maven2' }
|
2016-02-28 18:30:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-05-01 21:09:14 +02:00
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
|
|
|
|
}
|