-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (42 loc) · 1.66 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.2.41"
repositories {
maven() { url "https://plugins.gradle.org/m2/" }
jcenter()
google()
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:3.3.1'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
classpath 'com.google.firebase:firebase-plugins:1.1.3'
classpath 'com.google.gms:google-services:3.2.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.1.1'
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:2.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins { id 'io.gitlab.arturbosch.detekt' version '1.0.0.RC6-4' }
allprojects {
repositories {
maven { url 'https://jitpack.io' }
mavenLocal()
jcenter()
google()
mavenCentral()
maven { url "http://dl.bintray.com/populov/maven" }
maven {
url "https://dl.bintray.com/greenlibs/greenspand-libs"
credentials {
username project.hasProperty('bintrayPrivateUser') ? project.bintrayPrivateUser : System.getenv('BINTRAY_USER')
password project.hasProperty('bintrayPrivateKey') ? project.bintrayPrivateKey : System.getenv('BINTRAY_PASSWORD')
}
}
maven { url "https://repo.eclipse.org/content/repositories/paho-releases/" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}