-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
84 lines (72 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import io.gitlab.arturbosch.detekt.Detekt
buildscript {
ext.kotlin_version = '1.6.21'
ext.moshiVersion = "1.13.0"
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
classpath 'com.google.gms:google-services:4.3.10'
// Add the Crashlytics Gradle plugin
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
id("io.gitlab.arturbosch.detekt").version("1.18.1")
}
apply plugin: 'io.gitlab.arturbosch.detekt'
dependencies {
detektPlugins "io.gitlab.arturbosch.detekt:detekt-formatting:1.16.0"
}
def kotlinFiles = "**/*.kt"
def resourceFiles = "**/resources/**"
def buildFiles = "**/build/**"
def configFile = files("$rootDir/config/detekt/detekt.yml")
def projectSource = file(projectDir)
tasks.register("detektBasic", Detekt) {
description = "Custom DETEKT build for all modules"
parallel = true
ignoreFailures = false
autoCorrect = false
buildUponDefaultConfig = true
setSource(projectSource)
config.setFrom(configFile)
include(kotlinFiles)
exclude(resourceFiles, buildFiles)
reports {
html.enabled = false
xml.enabled = false
txt.enabled = false
}
}
tasks.register("detektClear", Detekt) {
description = "Custom DETEKT build for all modules"
parallel = true
ignoreFailures = false
autoCorrect = true
buildUponDefaultConfig = true
setSource(projectSource)
config.setFrom(configFile)
include(kotlinFiles)
exclude(resourceFiles, buildFiles)
reports {
html.enabled = false
xml.enabled = false
txt.enabled = false
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}