-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.gradle
60 lines (55 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'dependencies.gradle'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath deps.plugins.android_build_tools
classpath deps.plugins.kotlin
classpath deps.plugins.versions
classpath deps.plugins.maven_publish
classpath deps.plugins.dokka
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://jitpack.io"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: "org.jetbrains.dokka"
afterEvaluate {
dokka {
configuration {
externalDocumentationLink {
url = new URL("https://developer.android.com/reference/androidx/")
packageListUrl = new URL("https://developer.android.com/reference/androidx/package-list")
}
externalDocumentationLink {
url = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/")
packageListUrl = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-android/package-list")
}
externalDocumentationLink {
url = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/")
packageListUrl = new URL("https://kotlin.github.io/kotlinx.coroutines/kotlinx-coroutines-core/package-list")
}
externalDocumentationLink {
url = new URL("https://square.github.io/okhttp/3.x/okhttp/")
packageListUrl = new URL("https://square.github.io/okhttp/3.x/okhttp/package-list")
}
externalDocumentationLink {
url = new URL("https://square.github.io/okio/2.x/okio/")
packageListUrl = new URL("https://square.github.io/okio/2.x/okio/package-list")
}
}
}
}