We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bed013 commit eafb373Copy full SHA for eafb373
README.md
@@ -43,6 +43,31 @@ dokka(
43
)
44
```
45
46
+### Supported `dokka-cli` arguments
47
+
48
+See the Dokka [docs](https://github.com/Kotlin/dokka#using-the-command-line) for more information.
49
50
+```starlark
51
+dokka(
52
+ name = "dokka_javadoc_test",
53
+ srcs = [ ... ],
54
+ moduleName = "name goes here",
55
+ moduleDisplayName = "display name goes here",
56
+ offlineMode = False,
57
+ failOnWarning = False,
58
+ noStdlibLink = False,
59
+ noJdkLink = False,
60
+ jdkVersion = "1.8",
61
+ includeNonPublic = False,
62
+ skipEmptyPackages = False,
63
+ skipDeprecated = False,
64
+ reportUndocumented = False,
65
+ plugins = [
66
+ ...
67
+ ],
68
+)
69
+```
70
71
## Building
72
73
`$ bazel build //sample:sample_dokka_docs`
0 commit comments