-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (43 loc) · 1.18 KB
/
build.gradle
File metadata and controls
51 lines (43 loc) · 1.18 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileVersion = 28
targetVersion = 28
minVersion = 14
gradlePluginVersion = '3.5.0'
kotlinVersion = '1.3.31'
coroutine_version = '1.3.0-RC2'
materialVersion = '1.0.0'
versionerVersion = '0.4.1'
lifecycle_version = '2.2.0-alpha04'
jUnitVersion = '4.12'
jUnitTestExtVersion = '1.1.1'
espressoVersion = '3.2.0'
mockitoVersion = '2.19.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.pascalwelsch.gitversioner:gitversioner:$versionerVersion"
}
}
apply plugin: 'com.pascalwelsch.gitversioner'
gitVersioner {
baseBranch 'develop'
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}