misp-bump/build.gradle

30 lines
582 B
Groovy
Raw Normal View History

2018-06-10 16:23:33 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
2018-08-10 15:15:09 +02:00
2018-06-10 16:23:33 +02:00
dependencies {
2018-07-19 10:12:04 +02:00
classpath 'com.android.tools.build:gradle:3.1.3'
2018-06-10 16:23:33 +02:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
2018-07-19 10:12:04 +02:00
2018-06-10 16:23:33 +02:00
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}