-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
35 lines (32 loc) · 1.07 KB
/
build.gradle.kts
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
buildscript {
repositories {
google()
jcenter()
maven(url = "https://maven.fabric.io/public")
maven(url = "http://dl.bintray.com/kotlin/kotlin-eap")
}
dependencies {
classpath("com.android.tools.build:gradle:${Versions.gradlePlugin}")
classpath(kotlin("gradle-plugin", Versions.kotlinLanguage))
classpath("android.arch.navigation:navigation-safe-args-gradle-plugin:${Versions.acNavigation}")
classpath("com.google.gms:google-services:${Versions.googleServicesPlugin}")
classpath("io.fabric.tools:gradle:${Versions.fabricPlugin}")
classpath("org.jacoco:org.jacoco.core:${Versions.jacocoPlugin}")
}
}
allprojects {
repositories {
google()
jcenter()
maven(url = "https://jitpack.io")
maven(url = "http://dl.bintray.com/kotlin/kotlin-eap")
}
}
plugins {
id("com.github.ben-manes.versions") version (Versions.versionsUpdatePlugin)
}
tasks {
@Suppress("UNUSED_VARIABLE") val clean by creating(Delete::class) {
delete(rootProject.buildDir)
}
}