-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
166 lines (144 loc) · 4.58 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
/*
* Just run this script using "gradlew", and it will show you typical examples of how to use it.
*/
defaultTasks 'cgeoHelp'
task cgeoHelp {
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.'
}
}
configure(cgeoHelp) {
group = 'cgeo'
description = 'Displays help for building cgeo.'
}
/*
* update check for all components in this gradle script
*/
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'idea'
buildscript {
repositories {
jcenter()
}
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.13.0'
// Android gradle plugin
classpath 'com.android.tools.build:gradle:2.2.3'
// Android annotation processor
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// un-mocking of portable Android classes
classpath 'de.mobilej.unmock:UnMockPlugin:0.5.1'
// Google Services (App Invite) has its own Gradle plugin
classpath 'com.google.gms:google-services:2.1.0'
// monitor our application method limit
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.2'
// ribbonizer for easier distinction of non-release builds
classpath 'com.github.gfx.ribbonizer:plugin:1.0.0'
}
}
// filter out non release version updates and other updates we cannot use
allprojects {
configurations {
all {
resolutionStrategy {
componentSelection {
all { ComponentSelection selection ->
boolean rejected = ['alpha', 'beta', 'rc', 'cr', 'm'].any { qualifier ->
selection.candidate.version ==~ /(?i).*[.-]${qualifier}[.\d-]*/
}
// allow beta version of androidsvg
if (selection.candidate.group == 'com.caverock') {
rejected = false
}
// google auto service only available as rc2 right now
if (selection.candidate.group == 'com.google.auto.service') {
rejected = false
}
if (rejected) {
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() > 1) {
selection.reject("assertj 2.x or higher require 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")
}
}
}
}
}
}
repositories {
mavenCentral()
jcenter()
// hosts e.g. viewpagerindicator
maven {
url "https://jitpack.io"
}
// viewpager fork
maven {
url 'https://dl.bintray.com/alexeydanilov/maven'
}
}
}
/*
* common configuration for the Java projects
*/
ext.buildToolsVersion = "23.0.3"
ext.minSdkVersion = 9
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
}
}