forked from afollestad/viewpagerdots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
30 lines (25 loc) · 714 Bytes
/
build.gradle
File metadata and controls
30 lines (25 loc) · 714 Bytes
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
apply from: './dependencies.gradle'
apply from: './versionsPlugin.gradle'
buildscript {
apply from: './dependencies.gradle'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:' + versions.gradlePlugin
classpath 'com.diffplug.spotless:spotless-plugin-gradle:' + versions.spotlessPlugin
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:' + versions.kotlin
classpath 'com.github.ben-manes:gradle-versions-plugin:' + versions.versionPlugin
classpath 'com.novoda:bintray-release:' + versions.bintrayPlugin
}
}
allprojects {
repositories {
google()
jcenter()
}
tasks.withType(Javadoc).all {
enabled = false
}
}