-
Notifications
You must be signed in to change notification settings - Fork 61
/
build.gradle
119 lines (113 loc) · 3.43 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.jacoco:org.jacoco.core:0.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.0.0.RC6-4"
}
plugins {
id "org.sonarqube" version "2.6"
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://repo.eclipse.org/content/groups/releases/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://www.jitpack.io" }
maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
maven { url 'https://dl.bintray.com/guardian/android' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//Static code analysis for Kotlin
detekt {
version = "1.0.0.RC6-4"
defaultProfile {
input = file("app/src/main/java")
config = file("/config/detekt-config.yml")
filters = ".*/resources/.*,.*/tmp/.*"
output = file("reports")
outputName = "detekt-report"
baseline = file("reports/baseline.xml")
}
}
ext {
minSdkVersion = 15
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '26.0.2'
support_library_version = '28.0.0'
support_constraint_version = '1.1.3'
dagger2_version = '2.27'
runner_version = '1.0.2'
espresso_version = '3.0.2'
espresso_descendant_actions = '1.4.0'
junit_version = '4.13'
rx_android_version = '2.0.2'
rx_java_version = '2.1.14'
retrofit_version = '2.8.1'
okHttp_version = '3.10.0'
interceptor_version = '3.9.1'
dbflow_version = '4.2.4'
sqlcipher_version = '4.2.0@aar'
gson_version = '2.8.6'
anko_version = '0.10.8'
okHttpLog_version = '3.9.1'
jgit_version = '3.7.1.201504261725-r'
commonsIo_version = '2.6'
jackson_databind_version = '2.11.0'
jackson_yaml_version = '2.11.0'
jackson_module_version = '2.11.0'
hamcrest_core_version = '2.2'
hamcrest_version = '2.2'
test_support_version = '0.1'
test_rule_version = '1.0.2'
mockito_version = '3.3.3'
junit_version = '4.12'
coroutine_version = "1.3.5"
conductor_version = "3.0.0-rc4"
conductor_version_support = "3.0.0-rc2"
stepper_version = "4.3.1"
multidex_version = "2.0.1"
jsoup = '1.13.1'
io_cipher = '0.5@aar'
sectioned_recycle = '1.2.0'
rss_library = '1.2.0'
picasso_version = '2.71828'
markdown_view_version = '0.19.0'
codekidX_storage_chooser = '2.0.4.4'
process_phoenix = '2.0.0'
evernote_android_job = '1.2.6'
sectionedrecyclerviewadapter = '3.1.0'
calligraphy3 = '3.1.1'
viewpump = '2.0.3'
okhttp3 = '4.6.0'
logging_interceptor = '4.6.0'
shakedetector = '1.0.0@aar'
pageindicatorview = '1.0.1@aar'
itextpdf = '5.5.13.1'
retrofit_adapter = '0.9.2'
groupie = '2.5.1'
anddown = '0.4.0'
firebase = '16.0.6'
commonsText = '1.8'
commonsLang = '3.10'
flexbox = '2.0.1'
asymetric_grid_view = '2.0.1'
android_permissions = '3.8'
pug_notifications = '1.8.1'
}