2020-03-07 13:08:50 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
plugins{
|
2020-05-31 02:30:53 +02:00
|
|
|
id("com.github.ben-manes.versions") version BuildPluginsVersion.VERSIONS_PLUGIN
|
2020-03-07 13:08:50 +01:00
|
|
|
}
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven { setUrl("https://jitpack.io") }
|
2020-05-31 02:30:53 +02:00
|
|
|
maven { setUrl("https://plugins.gradle.org/m2/") }
|
2020-03-07 13:08:50 +01:00
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-31 02:30:53 +02:00
|
|
|
|
2020-03-07 13:08:50 +01:00
|
|
|
tasks.register("clean", Delete::class) {
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
}
|