2018-12-07 20:11:50 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2019-01-07 21:47:47 +00:00
|
|
|
classpath Deps.tools_androidgradle
|
|
|
|
classpath Deps.tools_kotlingradle
|
2019-02-08 18:35:48 +00:00
|
|
|
classpath Deps.androidx_safeargs
|
2019-02-20 02:10:17 +00:00
|
|
|
classpath Deps.allopen
|
2019-08-07 16:37:56 +00:00
|
|
|
classpath Deps.osslicenses_plugin
|
2018-12-07 20:11:50 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 16:29:45 +00:00
|
|
|
plugins {
|
2019-08-09 19:16:44 +00:00
|
|
|
id("io.gitlab.arturbosch.detekt").version("1.0.0-RC16")
|
2019-01-30 16:29:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-07 20:11:50 +00:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2019-01-15 18:47:38 +00:00
|
|
|
maven {
|
2020-03-13 14:39:55 +00:00
|
|
|
url "https://nightly.maven.mozilla.org/maven2"
|
2019-01-15 18:47:38 +00:00
|
|
|
}
|
2019-01-07 21:47:47 +00:00
|
|
|
maven {
|
|
|
|
url "https://maven.mozilla.org/maven2"
|
|
|
|
}
|
2019-03-07 07:19:31 +00:00
|
|
|
maven {
|
|
|
|
url "https://repo.leanplum.com/"
|
|
|
|
}
|
2018-12-07 20:11:50 +00:00
|
|
|
jcenter()
|
|
|
|
}
|
2019-08-07 21:00:53 +00:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
2019-08-09 19:16:44 +00:00
|
|
|
kotlinOptions.jvmTarget = "1.8"
|
2019-08-07 21:00:53 +00:00
|
|
|
kotlinOptions.allWarningsAsErrors = true
|
|
|
|
kotlinOptions.freeCompilerArgs += ["-Xuse-experimental=kotlin.Experimental", "-Xskip-runtime-version-check"]
|
|
|
|
}
|
2018-12-07 20:11:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
2019-01-15 18:47:38 +00:00
|
|
|
}
|
2019-01-30 16:29:45 +00:00
|
|
|
|
|
|
|
detekt {
|
|
|
|
// The version number is duplicated, please refer to plugins block for more details
|
2019-08-09 19:16:44 +00:00
|
|
|
version = "1.0.0-RC16"
|
2019-12-05 03:06:05 +00:00
|
|
|
input = files("$projectDir/app/src")
|
2019-01-30 16:29:45 +00:00
|
|
|
config = files("$projectDir/config/detekt.yml")
|
|
|
|
filters = ".*test.*,.*/resources/.*,.*/tmp/.*"
|
|
|
|
|
|
|
|
reports {
|
|
|
|
html {
|
|
|
|
enabled = true
|
|
|
|
destination = file("$projectDir/build/reports/detekt.html")
|
|
|
|
}
|
2019-08-21 17:52:09 +00:00
|
|
|
xml {
|
|
|
|
enabled = false
|
|
|
|
}
|
2019-01-30 16:29:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
ktlint
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-08-09 19:16:44 +00:00
|
|
|
ktlint "com.pinterest:ktlint:0.34.2"
|
2019-12-31 16:46:22 +00:00
|
|
|
detekt project(":mozilla-detekt-rules")
|
|
|
|
detekt "io.gitlab.arturbosch.detekt:detekt-cli:${Versions.detekt}"
|
2019-01-30 16:29:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task ktlint(type: JavaExec, group: "verification") {
|
|
|
|
description = "Check Kotlin code style."
|
|
|
|
classpath = configurations.ktlint
|
2019-08-21 17:21:58 +00:00
|
|
|
main = "com.pinterest.ktlint.Main"
|
2019-12-05 03:06:05 +00:00
|
|
|
args "app/src/**/*.kt"
|
2019-05-29 13:19:17 +00:00
|
|
|
}
|