norn-talk/build.gradle

37 lines
852 B
Groovy
Raw Permalink Normal View History

2017-11-19 16:03:18 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2017-12-09 12:18:52 +00:00
ext {
2018-03-26 08:00:17 +00:00
kotlin_version = '1.2.31'
2017-12-09 12:18:52 +00:00
archRoomVersion = '1.0.0'
2018-03-21 14:56:11 +00:00
supportLibVersion = '27.1.0'
dokka_version = '0.9.15'
2017-12-09 12:18:52 +00:00
}
2017-11-19 16:03:18 +00:00
repositories {
google()
jcenter()
}
2017-12-09 12:18:52 +00:00
2017-11-19 16:03:18 +00:00
dependencies {
2017-12-07 15:49:32 +00:00
classpath 'com.android.tools.build:gradle:3.0.1'
2017-11-19 16:03:18 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-android-gradle-plugin:${dokka_version}"
2017-11-19 16:03:18 +00: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
}