-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
24 lines (21 loc) · 799 Bytes
/
build.gradle
File metadata and controls
24 lines (21 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import static Versions.detekt_version
import static Versions.gradle_version
import static Versions.graphAssertion_version
import static Versions.kotlin_version
buildscript {
dependencies {
classpath(Root.classPathJaCoCo)
classpath(Root.classPathNavigation)
}
}
plugins {
id 'com.android.application' version "$gradle_version" apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version" apply false
id 'io.gitlab.arturbosch.detekt' version "$detekt_version" apply true
id 'com.jraska.module.graph.assertion' version "$graphAssertion_version" apply true
}
task clean(type: Delete) {
delete rootProject.buildDir
}