kiwix-android/build.gradle.kts
Sean Mac Gillicuddy 80c3276786 Add detekt
2019-12-11 14:44:26 +00:00

31 lines
593 B
Plaintext

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath(Libs.com_android_tools_build_gradle)
classpath(Libs.kotlin_gradle_plugin)
classpath(Libs.ktlint_gradle)
classpath(Libs.jacoco_android)
classpath(Libs.detekt_gradle_plugin)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
buildSrcVersions
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
tasks.create<Delete>("clean") {
delete(rootProject.buildDir)
}