forked from cgeo/cgeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
194 lines (171 loc) · 7.23 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
* Just run this script using "gradlew", and it will show you typical examples of how to use it.
*/
defaultTasks 'cgeoHelp'
tasks.register('cgeoHelp') {
group = 'cgeo'
description = 'Displays help for building cgeo.'
doLast {
println ''
println 'These are some of the available commands for building cgeo.'
println ''
println 'cleaning all generated artifacts:'
println ' gradlew clean'
println ''
println 'build:'
println ' gradlew assembleDebug'
println ''
println 'install on connected device/emulator:'
println ' gradlew installBasicDebug'
println ''
println 'run app on connected device/emulator:'
println ' gradlew runBasicDebug'
println ''
println 'instrumentation tests on connected device/emulator:'
println ' gradlew connectedBasicDebugAndroidTest'
println ''
println 'pure unit tests WITHOUT device'
println ' gradlew testBasicDebugUnitTest'
println ''
println 'all unit tests (pure and instrumentation)'
println ' gradlew testDebug'
println ''
println 'check project dependencies for updates:'
println ' gradlew dependencies main:dependencies'
println ''
println 'check gradle dependencies for updates:'
println ' gradlew dependencyUpdates'
println ''
println 'Use "gradlew tasks" for more available tasks.'
println ''
println ''
println 'Available build types are: debug, nightly (requires an env var named NB), ' +
'rc (requires an env var named RC), release.'
}
}
/*
* Build scan plugin shall be applied first
*/
apply plugin: 'com.gradle.build-scan'
/*
* update check for all components in this gradle script
*/
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'idea'
buildscript {
repositories {
jcenter()
// gradle build-scan for profiling our build script
maven {
url 'https://plugins.gradle.org/m2'
}
google()
}
dependencies {
// these dependencies are used by gradle plugins, not by our projects
// check for updates of gradle plugin dependencies
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
// Android gradle plugin
classpath 'com.android.tools.build:gradle:3.4.1'
// un-mocking of portable Android classes
classpath 'de.mobilej.unmock:UnMockPlugin:0.7.3'
// monitor our application method limit
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.6'
// ribbonizer for easier distinction of non-release builds
classpath 'com.github.gfx.ribbonizer:ribbonizer-plugin:2.1.0'
// gradle build script profiling
classpath 'com.gradle:build-scan-plugin:2.3'
}
}
// filter out non release version updates and other updates we cannot use
allprojects {
configurations {
all {
resolutionStrategy {
componentSelection {
all { ComponentSelection selection ->
if (['alpha', 'beta', 'rc', 'cr', 'm', 'pr'].any { qualifier -> selection.candidate.version.contains(qualifier)}) {
selection.reject('Release candidate')
}
// https://github.com/joel-costigliola/assertj-core/issues/345
if (selection.candidate.group == 'org.assertj' && selection.candidate.module == 'assertj-core' && selection.candidate.version.substring(0,1).toInteger() > 2) {
selection.reject("assertj 3.x or higher requires Java 7 SE classes not available in Android")
}
// findbugs team has some release trouble
if (selection.candidate.group == 'com.google.code.findbugs' && selection.candidate.module == 'annotations' && selection.candidate.version == '3.0.1') {
selection.reject("3.0.1 is not an upgrade of 3.0.1u2")
}
// Apache Commons IO 2.6 fails in FileUtils.deleteDirectory()
if (selection.candidate.group == 'commons-io' && selection.candidate.module == 'commons-io' && selection.candidate.version.substring(0,1).toInteger()*10+selection.candidate.version.substring(2,3).toInteger() > 25) {
selection.reject("Apache Commons IO 2.6 calls methods not available in the Android runtime.")
}
// Apache Commons lang3 3.6+ fails in StringUtils.join() for API < 19
if (selection.candidate.group == 'org.apache.commons' && selection.candidate.module == 'commons-lang3' && selection.candidate.version.substring(0,1).toInteger()*10+selection.candidate.version.substring(2,3).toInteger() > 35) {
selection.reject("Apache Commons lang3 3.6+ calls methods not available in the Android runtime.")
}
// Apache Commons Text 1.2+ requires Apache Commons lang3 3.6+ (see above)
if (selection.candidate.group == 'org.apache.commons' && selection.candidate.module == 'commons-text' && selection.candidate.version.substring(0,1).toInteger()*10+selection.candidate.version.substring(2,3).toInteger() > 11) {
selection.reject("Apache Commons text 1.2+ requires Apache Commons lang3 3.6+.")
}
}
}
// new versions of checkstyle use guava 27, which has troublesome dependencies: https://groups.google.com/forum/#!topic/guava-announce/Km82fZG68Sw
force 'com.google.guava:guava:26.0-jre'
}
}
}
repositories {
mavenCentral()
jcenter()
// hosts e.g. viewpagerindicator
maven {
url "https://jitpack.io"
}
// viewpager fork
maven {
url 'https://dl.bintray.com/alexeydanilov/maven'
}
// Android Support libraries are now in an online Maven repository
google()
}
}
buildScan {
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
termsOfServiceAgree = 'yes'
}
/*
* common configuration for the Java projects
*/
ext.minSdkVersion = 14
subprojects {
repositories {
mavenCentral()
jcenter()
// hosts e.g. viewpagerindicator
maven {
url "https://jitpack.io"
}
}
// disable warning of annotation processor about annotation types with no registered processor (like @NonNull)
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:-processing"
}
idea.module {
downloadJavadoc = true
downloadSources = true
}
}
/*
* Make sure that we use the source distribution when updating the wrapper from the command line.
*/
tasks.named('wrapper') {
distributionType = Wrapper.DistributionType.ALL
}
/*
* Configuration for dependencyUpdates, see https://github.com/ben-manes/gradle-versions-plugin
*/
tasks.named('dependencyUpdates') {
checkForGradleUpdate = true
revision = "release"
gradleReleaseChannel = "current"
}