-
Notifications
You must be signed in to change notification settings - Fork 0
/
dokka.gradle
39 lines (37 loc) · 1.28 KB
/
dokka.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
apply plugin: "org.jetbrains.dokka"
tasks.named("dokkaJavadoc") {
dependsOn(":halley-core:compileKotlin")
dependsOn(":halley-plugin:pluginVersion")
outputDirectory.set(file("$buildDir/javadoc"))
dokkaSourceSets {
named("main") {
includeNonPublic.set(false)
skipDeprecated.set(true)
reportUndocumented.set(true)
skipEmptyPackages.set(true)
platform.set(org.jetbrains.dokka.Platform.jvm)
jdkVersion.set(8)
noStdlibLink.set(false)
noJdkLink.set(false)
noAndroidSdkLink.set(false)
androidVariants.set(["debug"])
sourceLink {
localDirectory.set(file("src/main/kotlin"))
remoteUrl.set(uri("https://github.com/infinum/android-halley/"))
remoteLineSuffix.set("#L")
}
perPackageOption {
prefix = "com.infinum.halley.core.extensions"
suppress = true
}
perPackageOption {
prefix = "com.infinum.halley.retrofit.extensions"
suppress = true
}
perPackageOption {
prefix = "com.infinum.halley.sample"
suppress = true
}
}
}
}