-
Notifications
You must be signed in to change notification settings - Fork 12
/
build.gradle
35 lines (27 loc) · 882 Bytes
/
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
apply plugin: "com.github.ben-manes.versions"
apply from: './dependencies.gradle'
buildscript {
apply from: './dependencies.gradle'
ext.kotlin_version = versions.kotlin
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:' + versions.gradlePlugin
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:' + versions.kotlin
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4"
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1"
classpath "com.github.ben-manes:gradle-versions-plugin:" + versions.gradleVersion
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Javadoc).all {
enabled = false
}
}