-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
42 lines (37 loc) · 1010 Bytes
/
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
buildscript {
ext.kotlin_version = '1.3.11'
ext.koin_version = '0.9.3'
repositories {
google()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
classpath group: "com.android.tools.build", name: "gradle", version: '3.3.0'
classpath group: "com.github.dcendents", name: "android-maven-gradle-plugin", version: "2.0"
classpath group: "com.jfrog.bintray.gradle", name: "gradle-bintray-plugin", version: "1.8.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'io.gitlab.arturbosch.detekt' version '1.0.0.RC6-4'
}
detekt {
version = '1.0.0.RC6-4'
profile('main') {
input = "$projectDir"
config = './detekt.yml'
filters = '.*test.*,.*/resources/.*,.*/tmp/.*'
output = 'library/reports/report.xml'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}