-
Notifications
You must be signed in to change notification settings - Fork 1
/
dokka.gradle
41 lines (39 loc) · 1.33 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
40
41
apply plugin: "org.jetbrains.dokka"
tasks.named("dokkaJavadoc") {
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-sentinel/"))
remoteLineSuffix.set("#L")
}
perPackageOption {
prefix = "com.infinum.sentinel.extensions"
suppress = true
}
perPackageOption {
prefix = "com.infinum.sentinel.ui.shared.edgetreatment"
suppress = true
}
perPackageOption {
prefix = "com.infinum.sentinel.ui.shared"
suppress = true
}
perPackageOption {
prefix = "com.infinum.sentinel.sample"
suppress = true
}
}
}
}