-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
56 lines (48 loc) · 1.57 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Define versions in a single place
ext {
gradle_version = '3.4.2'
maven_gradle_version = '2.1'
kotlin_version = '1.3.41'
kotlin_coroutines_version = '1.2.2'
appcompat_version = '1.1.0'
retrofit_version = '2.5.0'
mockserver_version = '4.0.1'
logginginterceptor_version = '3.12.1'
mockito_kotlin_version = '2.1.0'
junit_version = '4.12'
junit5_version = '5.5.1'
assertj_version = '3.11.0'
ext_junit_version = '1.1.0'
testrunner_version = '1.2.0'
mannodermaus_version = '1.1.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.github.dcendents:android-maven-gradle-plugin:$maven_gradle_version"
classpath "de.mannodermaus.gradle.plugins:android-junit5:1.5.0.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
plugins {
// This plugin allows publishing android libraries
id "com.github.dcendents.android-maven" version "2.0"
}
allprojects {
repositories {
google()
jcenter()
mavenLocal()
maven { url 'https://jitpack.io' }
}
}
//task clean(type: Delete) {
// delete rootProject.buildDir
//}