forked from openfoodfacts/openfoodfacts-androidapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
98 lines (72 loc) · 2.39 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
classpath 'com.github.timfreiheit:ResourcePlaceholdersPlugin:0.2'
}
}
plugins {
id "org.sonarqube" version "2.7"
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
}
sonarqube { properties { property 'sonar.exclusions', "**/openfoodfacts/github/scrachx/openfood/models/*,**/*.xml" } }
sonarqube { properties { property 'sonar.coverage.exclusions', "**/openfoodfacts/github/scrachx/openfood/models/*" } }
}
ext {
supportLibraryVersion = '1.0.0'
multidexVersion = '2.0.0'
daggerVersion = '2.22'
rxVersion = '2.2.9'
rxAndroidVersion = '2.1.1'
retrofitVersion = '2.6.0'
okhttpVersion = '3.12.1'
jacksonVersion = '2.9.8'
greenDaoVersion = '3.2.0'
picassoVersion = '2.71828'
//DO NOT UPDATE : saveInAppExternalFilesDir() removed
easyImageVersion = '1.4.0'
butterknifeVersion = '10.1.0'
commonsLang='2.6'
commonsCsv='1.4'
journeyappsZxingScannerVersion = '3.6.0'
zxingCoreVersion = '3.3.0' //For Android 14+ support zxing:core should be 3.3.0 or earlier
htmlDomVersion = '1.11.2'
apacheValidatorVersion = '1.6'
loadToastVersion = '1.0.12'
zoomingImgVersion = '2.1.3'
materialDialogVersion = '0.9.6.0'
fontIconCoreVersion = '3.2.5@aar'
googleMaterialFontVersion = '3.0.1.3.original@aar'
jUnitVersion = '4.12'
jsonUnitVersion = '1.27.0'
espressoVersion = '3.1.0'
espressoContribVersion = '3.1.0'
mockitoVersion = '2.13.0'
constraintLayout = '1.1.2'
jsr250api = '1.0'
jobDispatcher = '0.8.5'
fastAdapterCommons = '3.3.1@aar'
converterScalars = '2.1.0'
materialDrawer = '6.1.2'
imageCropper = '2.8.0'
orchestrator = '1.1.0-alpha4'
nachos = '1.1.1'
testRunnerVersion = '1.1.0'
testFalconVersion="2.1.1"
testscreengrabVersion="1.2.0"
}