misp-bump/build.gradle

29 lines
653 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 {
ext.kotlin_version = '1.3.41'
2018-06-10 16:23:33 +02:00
repositories {
google()
jcenter()
2019-05-27 16:06:07 +02:00
2018-06-10 16:23:33 +02:00
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
2019-06-11 14:52:41 +02:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
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()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}