2021-06-15 18:48:11 -04:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
buildscript {
|
2021-06-15 20:42:53 -04:00
|
|
|
apply from: 'versions.gradle'
|
|
|
|
|
|
|
|
|
|
addRepos(repositories)
|
2021-06-15 18:48:11 -04:00
|
|
|
|
2021-06-15 20:42:53 -04:00
|
|
|
dependencies {
|
|
|
|
|
classpath deps.project.kotlin
|
|
|
|
|
classpath deps.project.gradle
|
2021-06-15 18:48:11 -04:00
|
|
|
}
|
2021-06-15 20:42:53 -04:00
|
|
|
|
|
|
|
|
ext.kotlin_version = build_versions.kotlin
|
2021-06-15 18:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
allprojects {
|
2021-06-15 20:42:53 -04:00
|
|
|
addRepos(repositories)
|
2021-06-15 18:48:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
|
delete rootProject.buildDir
|
2021-06-15 19:55:31 -04:00
|
|
|
}
|