-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (29 loc) · 918 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
/*
* Copyright © 2023 PagoNxt Merchant Solutions S.L. and Santander España Merchant Services, Entidad de Pago, S.L.U.
* You may not use this file except in compliance with the License which is available at https://mit-license.org/
*/
buildscript {
apply from: '../dependencies.gradle'
repositories {
google()
mavenCentral()
maven { url 'https://www.testfairy.com/maven' }
}
dependencies {
classpath "com.testfairy.plugins.gradle:testfairy:$testfairy"
classpath "com.android.tools.build:gradle:$gradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinGradlePlugin"
}
}
allprojects {
repositories {
maven { url "https://maven.google.com" }
google()
mavenCentral()
mavenLocal()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}