-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathbuild.gradle
47 lines (38 loc) · 1006 Bytes
/
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
allprojects {
version = '2.3.4'
}
def teamPropsFile(propsFile) {
def teamPropsDir = file('team-props')
return new File(teamPropsDir, propsFile)
}
ext {
checkstyleVersion = '8.5'
findbugsVersion = '3.0.1'
pmdVersion = '5.8.1'
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.novoda:bintray-release:0.9.1'
classpath 'com.novoda:gradle-static-analysis-plugin:1.0'
classpath 'com.novoda:gradle-build-properties-plugin:0.4.1'
classpath "com.github.ben-manes:gradle-versions-plugin:0.22.0"
}
}
wrapper {
distributionType = Wrapper.DistributionType.ALL
gradleVersion = '5.4.1'
}
allprojects {
apply plugin: 'com.github.ben-manes.versions'
repositories {
google()
jcenter()
}
apply from: teamPropsFile('static-analysis.gradle')
}
apply from: teamPropsFile('android-code-quality.gradle')