-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (42 loc) · 1.39 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
46
47
buildscript {
// VARIABLE CONFIGURATIONS
ext.kotlin_version = '1.0.5-2'
ext.anko_version = '0.9'
ext.support_version = '25.1.0'
ext.dagger_version = '2.7'
// REPOSITORIES DEFINITIONS
repositories {
jcenter()
}
// GLOBAL DEPENDENCIES
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.google.gms:google-services:3.0.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}
// *************************************************************************************************
allprojects {
/**
* REQUIRES FOR IGNORE JAVADOCS FOR KT FILES
*/
tasks.withType(Javadoc) {
excludes = ['**/*.kt']
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
repositories {
maven { url "https://jitpack.io" }
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
jcenter()
}
}
// *************************************************************************************************
task clean(type: Delete) {
delete rootProject.buildDir
}