forked from MarathonLabs/marathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
42 lines (35 loc) · 917 Bytes
/
build.gradle.kts
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
import io.gitlab.arturbosch.detekt.extensions.DetektExtension
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath(BuildPlugins.kotlinPlugin)
classpath(BuildPlugins.junitGradle)
classpath(BuildPlugins.dokka)
}
}
plugins {
id("io.gitlab.arturbosch.detekt") version "1.0.0.RC6-4"
}
configure<DetektExtension> {
debug = true
version = "1.0.0.RC6-4"
profile = "main"
profile("main", Action {
input = rootProject.projectDir.absolutePath
filters = ".*/resources/.*,.*/build/.*,.*/sample-app/.*"
config = "${rootProject.projectDir}/default-detekt-config.yml"
baseline = "${rootProject.projectDir}/reports/baseline.xml"
})
}
allprojects {
group = "com.malinskiy.marathon"
repositories {
jcenter()
mavenCentral()
google()
}
}