2016-10-29 17:55:37 +00:00
|
|
|
buildscript {
|
|
|
|
ext {
|
2019-05-06 07:01:33 +00:00
|
|
|
kotlin_version = '1.3.21'
|
|
|
|
mockito_version = '2.25.0'
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2019-05-06 07:01:33 +00:00
|
|
|
google()
|
2019-09-17 12:40:34 +00:00
|
|
|
maven { url 'https://www.jitpack.io' }
|
2019-05-06 07:01:33 +00:00
|
|
|
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
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-05-06 07:01:33 +00:00
|
|
|
// 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'
|
2018-07-29 12:14:18 +00:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
|
2018-08-01 20:29:04 +00:00
|
|
|
classpath 'de.mobilej.unmock:UnMockPlugin:0.6.5'
|
2016-12-02 21:25:43 +00:00
|
|
|
classpath 'com.github.triplet.gradle:play-publisher:1.1.5'
|
2019-05-06 07:01:33 +00:00
|
|
|
|
|
|
|
//classpath "com.gradle:build-scan-plugin:1.16"
|
2016-10-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-06 07:01:33 +00:00
|
|
|
|
|
|
|
//apply plugin: "com.gradle.build-scan"
|
|
|
|
//buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service'; termsOfServiceAgree = 'yes' }
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
}
|