-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
58 lines (49 loc) · 1.4 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import io.gitlab.arturbosch.detekt.Detekt
buildscript {
ext.kotlin_version = '1.5.10'
ext.hilt_version = '2.38.1'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.18.0"
}
}
apply from: 'config/dependencies.gradle'
apply from: 'config/githooks.gradle'
apply plugin: "io.gitlab.arturbosch.detekt"
allprojects {
repositories {
google()
mavenCentral()
}
}
subprojects { subproject ->
detekt {
baseline = file("${rootProject.rootDir}/detekt/baseline/detekt-baseline.xml")
config = files("${rootProject.rootDir}/detekt/detekt-config.yml")
buildUponDefaultConfig = true
disableDefaultRuleSets = false
debug = false
ignoreFailures = false
reports {
xml {
enabled = false
}
html {
enabled = false
}
txt {
enabled = false
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}