-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 1.04 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
import io.gitlab.arturbosch.detekt.Detekt
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compose_version = '1.4.2'
}
dependencies {
classpath("com.github.komputing:kethabi:0.3.1")
classpath ('com.github.gnosis.bivrost-kotlin:bivrost-gradle-plugin:0.8.1')
}
}
plugins {
id 'com.android.application' version '8.0.0' apply false
id 'com.android.library' version '8.0.0' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id "org.web3j" version "4.9.8" apply false
id 'org.jetbrains.kotlin.jvm' version '1.8.0' apply false
id "io.gitlab.arturbosch.detekt" version "1.23.3"
}
subprojects {
apply plugin: "io.gitlab.arturbosch.detekt"
detekt {
toolVersion = "1.23.3"
autoCorrect = true
parallel = true
}
dependencies {
detektPlugins "io.gitlab.arturbosch.detekt:detekt-formatting:1.23.3"
}
}
tasks.withType(Detekt).configureEach {
autoCorrect = true
}