forked from tramalho/unified-code-coverage-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 748 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
apply from: "jacoco.gradle"
buildscript {
ext.kotlinVersion = '1.5.21'
ext.gradlePluginVersion = '4.2.0'
// ext.gradlePluginVersion = '7.0.0'
ext.testXVersion = '1.3.0'
ext.espressoCoreVersion = '3.3.0'
ext.robolectricVersion = '4.6.1'
ext.junitVersion = '4.13'
ext.testXJunitVersion = '1.1.2'
ext.appCompatVersion = '1.2.0'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}