-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
74 lines (64 loc) · 2.16 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
google()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.jlleitschuh.gradle:ktlint-gradle:6.3.1"
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
//have no idea but adding this line makes
//ktlintApplyToIdea & ktlintApplyToIdeaGlobally tasks available
plugins {
id "org.jlleitschuh.gradle.ktlint" version "6.3.1"
}
ext.ReporterType = org.jlleitschuh.gradle.ktlint.reporter.ReporterType
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
}
maven { url "https://jitpack.io" }
}
}
subprojects {
apply from: "$project.rootDir/tools/script-ktlint.gradle"
}
ext.versions = [
'rxjava' : '2.2.4',
'room' : '2.1.0',
'koin' : '1.0.2',
'shapeOfView' : '1.4.1',
'supportLibrary' : '1.0.2',
'material' : '1.0.0',
'rxKotlin' : '2.1.0',
'rxAndroid' : '2.1.1',
'retrofit' : '2.2.0',
'gson' : '2.8.2',
'rxBinding' : '2.2.0',
'mosby' : '3.1.1',
'mock_web_server' : '3.12.1',
'constraintLayout' : '1.1.3',
'loggingInterceptor' : '3.10.0',
'timber' : '4.7.1',
'junit' : '4.12',
'support_test_rules' : '1.1.0-alpha4',
'support_test_runner' : '1.1.0-alpha4',
'espresso_core' : '3.1.0-alpha4',
'glide' : '4.9.0',
'epoxy' : '3.3.1',
]
task clean(type: Delete) {
delete rootProject.buildDir
}