-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
61 lines (53 loc) · 1.52 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
/*
* Copyright © Paysafe Holdings UK Limited 2019. For more information see LICENSE
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.7.21'
ext.jacocoVersion = '0.8.2'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath "org.jacoco:org.jacoco.core:$jacocoVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.bjoernq:unmockplugin:0.7.9'
classpath "org.jetbrains.kotlin:kotlin-allopen:$kotlin_version"
}
}
plugins {
id "org.sonarqube" version "2.7"
}
ext {
legacy_support_version = "1.0.0"
appcompat_version = "1.1.0"
android_ktx_version = "1.1.0"
kotlin_coroutines = "1.3.1"
nav_version = "2.2.0-beta01"
lifecycle_version = "2.1.0"
retrofit_version = "2.7.2"
okhttp_version = "3.11.0"
constraint_layout_version = "1.1.3"
espresso_version = "3.2.0"
junit_version = "4.12"
runner_version = "1.2.0"
play_services_wallet_version = "18.0.0"
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url "https://cardinalcommerceprod.jfrog.io/artifactory/android"
credentials {
username CARDINAL_USERNAME
password CARDINAL_PASSWORD
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}