-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle
40 lines (33 loc) · 951 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import dependencies.Dependencies
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath Dependencies.Android.gradlePlugin
classpath Dependencies.Kotlin.gradlePlugin
classpath Dependencies.Kotlin.allOpenPlugin
classpath Dependencies.Jetpack.navigationSafeArgsPlugin
classpath Dependencies.Kotlin.detektPlugin
classpath Dependencies.Kotlin.ktlintPlugin
classpath Dependencies.Test.jacoco
}
}
plugins {
id "io.gitlab.arturbosch.detekt" version "1.9.1"
}
tasks.detekt.jvmTarget = Config.javaVersion.toString()
allprojects {
apply from: "$rootDir/quality/detekt.gradle"
apply from: "$rootDir/quality/ktlint.gradle"
apply from: "$rootDir/quality/jacoco.gradle"
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}