File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version= rootProject.version
4
4
buildscript {
5
5
ext. javadocDir = " $buildDir /docs/javadoc"
6
6
ext. kotlin_version = ' 1.3.31'
7
- ext. dokka_version = ' 0.9.18 '
7
+ ext. dokka_version = ' 0.10.0 '
8
8
9
9
repositories {
10
10
mavenCentral()
@@ -25,6 +25,17 @@ sourceCompatibility = 1.7
25
25
dokka {
26
26
outputFormat = ' html'
27
27
outputDirectory = javadocDir
28
+
29
+ // Fix "Can't find node by signature": have to manually point to dependencies.
30
+ // https://github.com/Kotlin/dokka/wiki/faq#dokka-complains-about-cant-find-node-by-signature-
31
+ configuration{
32
+ externalDocumentationLink {
33
+ // Point to web javadoc for objectbox-java packages.
34
+ url = new URL (" https://objectbox.io/docfiles/java/current/" )
35
+ // Note: Using JDK 9+ package-list is now called element-list.
36
+ packageListUrl = new URL (url, " element-list" )
37
+ }
38
+ }
28
39
}
29
40
30
41
task javadocJar (type : Jar , dependsOn : dokka) {
You can’t perform that action at this time.
0 commit comments