forked from ligi/PassAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 1.21 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
buildscript {
ext {
kotlin_version = '1.3.21'
mockito_version = '2.25.0'
}
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } // for Spoon snapshot, until 2.0.0 is released
//maven { url "https://plugins.gradle.org/m2/" } // for build-scan
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: upgrade requires to migrate backend to the new app-engine plugin, see backend/build.gradle
classpath 'com.android.tools.build:gradle:3.3.2'
// FIXME: this causes deprecation warnings and should be replaced
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.5.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
classpath 'de.mobilej.unmock:UnMockPlugin:0.6.5'
classpath 'com.github.triplet.gradle:play-publisher:1.1.5'
//classpath "com.gradle:build-scan-plugin:1.16"
}
}
//apply plugin: "com.gradle.build-scan"
//buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service'; termsOfServiceAgree = 'yes' }
repositories {
google()
}