blob: d95bf4815eccacac5617773ad459a15b80f02f3c [file] [log] [blame]
Edwin Kempin1b817a82016-01-08 13:18:01 +01001// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
Sebastian Schuberth88b6aae2016-03-10 11:43:58 +01003apply plugin: 'com.github.ben-manes.versions'
4
Edwin Kempin1b817a82016-01-08 13:18:01 +01005buildscript {
6 repositories {
7 jcenter()
Sebastian Schuberth345f2e12016-03-20 09:46:32 +01008
9 maven {
10 url 'https://jitpack.io'
11 }
Edwin Kempin1b817a82016-01-08 13:18:01 +010012 }
Sebastian Schuberth345f2e12016-03-20 09:46:32 +010013
Edwin Kempin1b817a82016-01-08 13:18:01 +010014 dependencies {
Sebastian Schuberthe17a6d42016-11-25 10:47:19 +010015 classpath 'com.android.tools.build:gradle:2.2.0'
Sebastian Schuberthbb3acf32016-11-25 10:57:38 +010016 classpath 'com.github.ben-manes:gradle-versions-plugin:0.13.0'
Edwin Kempin1b817a82016-01-08 13:18:01 +010017
Edwin Kempin1b817a82016-01-08 13:18:01 +010018 // NOTE: Do not place your application dependencies here; they belong
19 // in the individual module build.gradle files
20 }
21}
22
23allprojects {
24 repositories {
25 jcenter()
Sebastian Schuberth3503a192016-03-21 13:40:39 +010026
27 maven {
28 url 'https://jitpack.io'
29 }
Edwin Kempin1b817a82016-01-08 13:18:01 +010030 }
31}
32
33task clean(type: Delete) {
34 delete rootProject.buildDir
35}