-
-
Notifications
You must be signed in to change notification settings - Fork 762
/
build.gradle
34 lines (28 loc) · 847 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
apply from: './dependencies.gradle'
buildscript {
apply from: './dependencies.gradle'
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$versions.dexCount"
classpath "io.github.gradle-nexus:publish-plugin:$versions.gradleNexus"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$versions.dokka"
}
}
apply plugin: 'io.github.gradle-nexus.publish-plugin'
apply from: "./scripts/publish-root.gradle"
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
tasks.withType(Javadoc).all {
enabled = false
}
}