CLI

If for some reason you cannot use Gradle or Maven build tools, Dokka has a command line (CLI) runner for generating documentation.

In comparison, it has the same, if not more, capabilities as the Gradle plugin for Dokka. Although it is considerably more difficult to set up as there is no autoconfiguration, especially in multiplatform and multi-module environments.

Get started

The CLI runner is published to Maven Central as a separate runnable artifact.

You can find it on Maven Central or download it directly.

With the dokka-cli-1.7.20.jar file saved on your computer, run it with the -help option to see all available configuration options and their description:

  1. java -jar dokka-cli-1.7.20.jar -help

It also works for some nested options, such as -sourceSet:

  1. java -jar dokka-cli-1.7.20.jar -sourceSet -help

Generate documentation

Prerequisites

Since there is no build tool to manage dependencies, you have to provide dependency .jar files yourself.

Listed below are the dependencies that you need for any output format:

GroupArtifactVersionLink
org.jetbrains.dokkadokka-base1.7.20download
org.jetbrains.dokkaanalysis-kotlin-descriptors1.7.20download

Below are the additional dependencies that you need for HTML output format:

GroupArtifactVersionLink
org.jetbrains.kotlinxkotlinx-html-jvm0.8.0download
org.freemarkerfreemarker2.3.31download

Run with command line options

You can pass command line options to configure the CLI runner.

At the very least you need to provide the following options:

  • -pluginsClasspath - a list of absolute/relative paths to downloaded dependencies, separated by semi-colons ;
  • -sourceSet - an absolute path to code sources to generate documentation for
  • -outputDir - an absolute/relative path of the documentation output directory
  1. java -jar dokka-cli-1.7.20.jar \
  2. -pluginsClasspath "./dokka-base-1.7.20.jar;./analysis-kotlin-descriptors-1.7.20.jar;./kotlinx-html-jvm-0.8.0.jar;./freemarker-2.3.31.jar" \
  3. -sourceSet "-src /home/myCoolProject/src/main/kotlin" \
  4. -outputDir "./dokka/html"

Executing the given example generates documentation in HTML output format.

See Command line options for more configuration details.

Run with JSON configuration

It’s possible to configure the CLI runner with JSON. In this case, you need to provide an absolute/relative path to the JSON configuration file as the first and only argument. All other configuration options are parsed from it.

  1. java -jar dokka-cli-1.7.20.jar dokka-configuration.json

At the very least, you need the following JSON configuration file:

  1. {
  2. "outputDir": "./dokka/html",
  3. "sourceSets": [
  4. {
  5. "sourceSetID": {
  6. "scopeId": "moduleName",
  7. "sourceSetName": "main"
  8. },
  9. "sourceRoots": [
  10. "/home/myCoolProject/src/main/kotlin"
  11. ]
  12. }
  13. ],
  14. "pluginsClasspath": [
  15. "./dokka-base-1.7.20.jar",
  16. "./kotlinx-html-jvm-0.8.0.jar",
  17. "./analysis-kotlin-descriptors-1.7.20.jar",
  18. "./freemarker-2.3.31.jar"
  19. ]
  20. }

See JSON configuration options for more details.

Other output formats

By default, the dokka-base artifact contains the HTML output format only.

All other output formats are implemented as Dokka plugins. In order to use them, you have to put them on the plugins classpath.

For example, if you want to generate documentation in the experimental GFM output format, you need to download and pass gfm-plugin’s JAR (download) into the pluginsClasspath configuration option.

Via command line options:

  1. java -jar dokka-cli-1.7.20.jar \
  2. -pluginsClasspath "./dokka-base-1.7.20.jar;...;./gfm-plugin-1.7.20.jar" \
  3. ...

Via JSON configuration:

  1. {
  2. ...
  3. "pluginsClasspath": [
  4. "./dokka-base-1.7.20.jar",
  5. "...",
  6. "./gfm-plugin-1.7.20.jar"
  7. ],
  8. ...
  9. }

With the GFM plugin passed to pluginsClasspath, the CLI runner generates documentation in the GFM output format.

For more information, see Markdown and Javadoc pages.

Command line options

To see the list of all possible command line options and their detailed description, run:

  1. java -jar dokka-cli-1.7.20.jar -help

Short summary:

OptionDescription
moduleNameName of the project/module.
moduleVersionDocumented version.
outputDirOutput directory path, ./dokka by default.
sourceSetConfiguration for a Dokka source set. Contains nested configuration options.
pluginsConfigurationConfiguration for Dokka plugins.
pluginsClasspathList of jars with Dokka plugins and their dependencies. Accepts multiple paths separated by semicolons.
offlineModeWhether to resolve remote files/links over network.
failOnWarningWhether to fail documentation generation if Dokka has emitted a warning or an error.
delayTemplateSubstitutionWhether to delay substitution of some elements. Used in incremental builds of multi-module projects.
noSuppressObviousFunctionsWhether to suppress obvious functions such as those inherited from kotlin.Any and java.lang.Object.
includesMarkdown files that contain module and package documentation. Accepts multiple values separated by semicolons.
suppressInheritedMembersWhether to suppress inherited members that aren’t explicitly overridden in a given class.
globalPackageOptionsGlobal list of package configuration options in format “matchingRegex,-deprecated,-privateApi,+warnUndocumented,+suppress;+visibility:PUBLIC;…”. Accepts multiple values separated by semicolons.
globalLinksGlobal external documentation links in format {url}^{packageListUrl}. Accepts multiple values separated by ^^.
globalSrcLinkGlobal mapping between a source directory and a Web service for browsing the code. Accepts multiple paths separated by semicolons.
helpSourceSetPrints help for the nested -sourceSet configuration.
loggingLevelLogging level, possible values: DEBUG, PROGRESS, INFO, WARN, ERROR.
help, hUsage info.

Source set options

To see the list of command line options for the nested -sourceSet configuration, run:

  1. java -jar dokka-cli-1.7.20.jar -sourceSet -help

Short summary:

OptionDescription
sourceSetNameName of the source set.
displayNameDisplay name of the source set, used both internally and externally.
classpathClasspath for analysis and interactive samples. Accepts multiple paths separated by semicolons.
srcSource code roots to be analyzed and documented. Accepts multiple paths separated by semicolons.
dependentSourceSetsNames of the dependent source sets in format moduleName/sourceSetName. Accepts multiple values separated by semicolons.
samplesList of directories or files that contain sample functions. Accepts multiple paths separated by semicolons.
includesMarkdown files that contain module and package documentation. Accepts multiple paths separated by semicolons.
documentedVisibilitiesVisibilities to be documented. Accepts multiple values separated by semicolons. Possible values: PUBLIC, PRIVATE, PROTECTED, INTERNAL, PACKAGE.
reportUndocumentedWhether to report undocumented declarations.
noSkipEmptyPackagesWhether to create pages for empty packages.
skipDeprecatedWhether to skip deprecated declarations.
jdkVersionVersion of JDK to use for linking to JDK Javadocs.
languageVersionLanguage version used for setting up analysis and samples.
apiVersionKotlin API version used for setting up analysis and samples.
noStdlibLinkWhether to generate links to the Kotlin standard library.
noJdkLinkWhether to generate links to JDK Javadocs.
suppressedFilesPaths to files to be suppressed. Accepts multiple paths separated by semicolons.
analysisPlatformPlatform used for setting up analysis.
perPackageOptionsList of package source set configurations in format matchingRegexp,-deprecated,-privateApi,+warnUndocumented,+suppress;…. Accepts multiple values separated by semicolons.
externalDocumentationLinksExternal documentation links in format {url}^{packageListUrl}. Accepts multiple values separated by ^^.
srcLinkMapping between a source directory and a Web service for browsing the code. Accepts multiple paths separated by semicolons.

JSON configuration

Below are some examples and detailed descriptions for each configuration section. You can also find an example with all configuration options applied at the bottom of the page.

General configuration

  1. {
  2. "moduleName": "Dokka Example",
  3. "moduleVersion": null,
  4. "outputDir": "./build/dokka/html",
  5. "failOnWarning": false,
  6. "suppressObviousFunctions": true,
  7. "suppressInheritedMembers": false,
  8. "offlineMode": false,
  9. "includes": [
  10. "module.md"
  11. ],
  12. "sourceLinks": [
  13. { "_comment": "Options are described in a separate section" }
  14. ],
  15. "perPackageOptions": [
  16. { "_comment": "Options are described in a separate section" }
  17. ],
  18. "externalDocumentationLinks": [
  19. { "_comment": "Options are described in a separate section" }
  20. ],
  21. "sourceSets": [
  22. { "_comment": "Options are described in a separate section" }
  23. ],
  24. "pluginsClasspath": [
  25. "./dokka-base-1.7.20.jar",
  26. "./kotlinx-html-jvm-0.8.0.jar",
  27. "./analysis-kotlin-descriptors-1.7.20.jar",
  28. "./freemarker-2.3.31.jar"
  29. ]
  30. }

The display name used to refer to the module. It is used for the table of contents, navigation, logging, etc.

Default: root

The module version.

Default: empty

The directory to where documentation is generated, regardless of output format.

Default: ./dokka

Whether to fail documentation generation if Dokka has emitted a warning or an error. The process waits until all errors and warnings have been emitted first.

This setting works well with reportUndocumented

Default: false

Whether to suppress obvious functions.

A function is considered to be obvious if it is:

  • Inherited from kotlin.Any, Kotlin.Enum, java.lang.Object or java.lang.Enum, such as equals, hashCode, toString.
  • Synthetic (generated by the compiler) and does not have any documentation, such as dataClass.componentN or dataClass.copy.

Default: true

Whether to suppress inherited members that aren’t explicitly overridden in a given class.

Note: This can suppress functions such as equals / hashCode / toString, but cannot suppress synthetic functions such as dataClass.componentN and dataClass.copy. Use suppressObviousFunctions for that.

Default: false

Whether to resolve remote files/links over your network.

This includes package-lists used for generating external documentation links. For example, to make classes from the standard library clickable.

Setting this to true can significantly speed up build times in certain cases, but can also worsen documentation quality and user experience. For example, by not resolving class/member links from your dependencies, including the standard library.

Note: You can cache fetched files locally and provide them to Dokka as local paths. See externalDocumentationLinks section.

Default: false

A list of Markdown files that contain module and package documentation.

The contents of specified files are parsed and embedded into documentation as module and package descriptions.

This can be configured on per-package basis.

Individual and additional configuration of Kotlin source sets.

For a list of possible options, see source set configuration.

The global configuration of source links that is applied for all source sets.

For a list of possible options, see source link configuration.

The global configuration of matched packages, regardless of the source set they are in.

For a list of possible options, see per-package configuration.

The global configuration of external documentation links, regardless of the source set they are used in.

For a list of possible options, see external documentation links configuration.

A list of JAR files with Dokka plugins and their dependencies.

Source set configuration

How to configure Kotlin source sets:

  1. {
  2. "sourceSets": [
  3. {
  4. "displayName": "jvm",
  5. "sourceSetID": {
  6. "scopeId": "moduleName",
  7. "sourceSetName": "main"
  8. },
  9. "dependentSourceSets": [
  10. {
  11. "scopeId": "dependentSourceSetScopeId",
  12. "sourceSetName": "dependentSourceSetName"
  13. }
  14. ],
  15. "documentedVisibilities": ["PUBLIC", "PRIVATE", "PROTECTED", "INTERNAL", "PACKAGE"],
  16. "reportUndocumented": false,
  17. "skipEmptyPackages": true,
  18. "skipDeprecated": false,
  19. "jdkVersion": 8,
  20. "languageVersion": "1.7",
  21. "apiVersion": "1.7",
  22. "noStdlibLink": false,
  23. "noJdkLink": false,
  24. "includes": [
  25. "module.md"
  26. ],
  27. "analysisPlatform": "jvm",
  28. "sourceRoots": [
  29. "/home/ignat/IdeaProjects/dokka-debug-mvn/src/main/kotlin"
  30. ],
  31. "classpath": [
  32. "libs/kotlin-stdlib-1.9.10.jar",
  33. "libs/kotlin-stdlib-common-1.9.10.jar"
  34. ],
  35. "samples": [
  36. "samples/basic.kt"
  37. ],
  38. "suppressedFiles": [
  39. "src/main/kotlin/org/jetbrains/dokka/Suppressed.kt"
  40. ],
  41. "sourceLinks": [
  42. { "_comment": "Options are described in a separate section" }
  43. ],
  44. "perPackageOptions": [
  45. { "_comment": "Options are described in a separate section" }
  46. ],
  47. "externalDocumentationLinks": [
  48. { "_comment": "Options are described in a separate section" }
  49. ]
  50. }
  51. ]
  52. }

The display name used to refer to this source set.

The name is used both externally (for example, the source set name is visible to documentation readers) and internally (for example, for logging messages of reportUndocumented).

The platform name can be used if you don’t have a better alternative.

The technical ID of the source set

The set of visibility modifiers that should be documented.

This can be used if you want to document protected/internal/private declarations, as well as if you want to exclude public declarations and only document internal API.

This can be configured on per-package basis.

Possible values:

  • PUBLIC
  • PRIVATE
  • PROTECTED
  • INTERNAL
  • PACKAGE

Default: PUBLIC

Whether to emit warnings about visible undocumented declarations, that is declarations without KDocs after they have been filtered by documentedVisibilities and other filters.

This setting works well with failOnWarning.

This can be configured on per-package basis.

Default: false

Whether to skip packages that contain no visible declarations after various filters have been applied.

For example, if skipDeprecated is set to true and your package contains only deprecated declarations, it is considered to be empty.

Default for CLI runner is false.

Whether to document declarations annotated with @Deprecated.

This can be configured on per-package basis.

Default: false

The JDK version to use when generating external documentation links for Java types.

For example, if you use java.util.UUID in some public declaration signature, and this option is set to 8, Dokka generates an external documentation link to JDK 8 Javadocs for it.

The Kotlin language version used for setting up analysis and @sample environment.

The Kotlin API version used for setting up analysis and @sample environment.

Whether to generate external documentation links that lead to the API reference documentation of Kotlin’s standard library.

Note: Links are generated when noStdLibLink is set to false.

Default: false

Whether to generate external documentation links to JDK’s Javadocs.

The version of JDK Javadocs is determined by the jdkVersion option.

Note: Links are generated when noJdkLink is set to false.

Default: false

A list of Markdown files that contain module and package documentation.

The contents of the specified files are parsed and embedded into documentation as module and package descriptions.

Platform to be used for setting up code analysis and @sample environment.

Possible values:

  • jvm
  • common
  • js
  • native

The source code roots to be analyzed and documented. Acceptable inputs are directories and individual .kt / .java files.

The classpath for analysis and interactive samples.

This is useful if some types that come from dependencies are not resolved/picked up automatically.

This option accepts both .jar and .klib files.

A list of directories or files that contain sample functions which are referenced via the @sample KDoc tag.

The files to be suppressed when generating documentation.

A set of parameters for source links that is applied only for this source set.

For a list of possible options, see source link configuration.

A set of parameters specific to matched packages within this source set.

For a list of possible options, see per-package configuration.

A set of parameters for external documentation links that is applied only for this source set.

For a list of possible options, see external documentation links configuration.

The sourceLinks configuration block allows you to add a source link to each signature that leads to the remoteUrl with a specific line number. (The line number is configurable by setting remoteLineSuffix).

This helps readers to find the source code for each declaration.

For an example, see the documentation for the count() function in kotlinx.coroutines.

You can configure source links for all source sets together at the same time, or individually:

  1. {
  2. "sourceLinks": [
  3. {
  4. "localDirectory": "src/main/kotlin",
  5. "remoteUrl": "https://github.com/Kotlin/dokka/tree/master/src/main/kotlin",
  6. "remoteLineSuffix": "#L"
  7. }
  8. ]
  9. }

The path to the local source directory.

The URL of the source code hosting service that can be accessed by documentation readers, like GitHub, GitLab, Bitbucket, etc. This URL is used to generate source code links of declarations.

The suffix used to append the source code line number to the URL. This helps readers navigate not only to the file, but to the specific line number of the declaration.

The number itself is appended to the specified suffix. For example, if this option is set to #L and the line number is 10, the resulting URL suffix is #L10.

Suffixes used by popular services:

  • GitHub: #L
  • GitLab: #L
  • Bitbucket: #lines-

Default: empty (no suffix)

Per-package configuration

The perPackageOptions configuration block allows setting some options for specific packages matched by matchingRegex.

You can add package configurations for all source sets together at the same time, or individually:

  1. {
  2. "perPackageOptions": [
  3. {
  4. "matchingRegex": ".*internal.*",
  5. "suppress": false,
  6. "skipDeprecated": false,
  7. "reportUndocumented": false,
  8. "documentedVisibilities": ["PUBLIC", "PRIVATE", "PROTECTED", "INTERNAL", "PACKAGE"]
  9. }
  10. ]
  11. }

The regular expression that is used to match the package.

Whether this package should be skipped when generating documentation.

Default: false

Whether to document declarations annotated with @Deprecated.

This can be set on project/module level.

Default: false

Whether to emit warnings about visible undocumented declarations, that is declarations without KDocs after they have been filtered by documentedVisibilities and other filters.

This setting works well with failOnWarning.

This can be configured on source set level.

Default: false

The set of visibility modifiers that should be documented.

This can be used if you want to document protected/internal/private declarations within this package, as well as if you want to exclude public declarations and only document internal API.

Can be configured on source set level.

Default: PUBLIC

The externalDocumentationLinks block allows the creation of links that lead to the externally hosted documentation of your dependencies.

For example, if you are using types from kotlinx.serialization, by default they are unclickable in your documentation, as if they are unresolved. However, since the API reference documentation for kotlinx.serialization is built by Dokka and is published on kotlinlang.org, you can configure external documentation links for it. Thus allowing Dokka to generate links for types from the library, making them resolve successfully and clickable.

You can configure external documentation links for all source sets together at the same time, or individually:

  1. {
  2. "externalDocumentationLinks": [
  3. {
  4. "url": "https://kotlinlang.org/api/kotlinx.serialization/",
  5. "packageListUrl": "https://kotlinlang.org/api/kotlinx.serialization/package-list"
  6. }
  7. ]
  8. }

The root URL of documentation to link to. It must contain a trailing slash.

Dokka does its best to automatically find package-list for the given URL, and link declarations together.

If automatic resolution fails or if you want to use locally cached files instead, consider setting the packageListUrl option.

The exact location of a package-list. This is an alternative to relying on Dokka automatically resolving it.

Package lists contain information about the documentation and the project itself, such as module and package names.

This can also be a locally cached file to avoid network calls.

Complete configuration

Below you can see all possible configuration options applied at the same time.

  1. {
  2. "moduleName": "Dokka Example",
  3. "moduleVersion": null,
  4. "outputDir": "./build/dokka/html",
  5. "failOnWarning": false,
  6. "suppressObviousFunctions": true,
  7. "suppressInheritedMembers": false,
  8. "offlineMode": false,
  9. "sourceLinks": [
  10. {
  11. "localDirectory": "src/main/kotlin",
  12. "remoteUrl": "https://github.com/Kotlin/dokka/tree/master/src/main/kotlin",
  13. "remoteLineSuffix": "#L"
  14. }
  15. ],
  16. "externalDocumentationLinks": [
  17. {
  18. "url": "https://docs.oracle.com/javase/8/docs/api/",
  19. "packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list"
  20. },
  21. {
  22. "url": "https://kotlinlang.org/api/latest/jvm/stdlib/",
  23. "packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list"
  24. }
  25. ],
  26. "perPackageOptions": [
  27. {
  28. "matchingRegex": ".*internal.*",
  29. "suppress": false,
  30. "reportUndocumented": false,
  31. "skipDeprecated": false,
  32. "documentedVisibilities": ["PUBLIC", "PRIVATE", "PROTECTED", "INTERNAL", "PACKAGE"]
  33. }
  34. ],
  35. "sourceSets": [
  36. {
  37. "displayName": "jvm",
  38. "sourceSetID": {
  39. "scopeId": "moduleName",
  40. "sourceSetName": "main"
  41. },
  42. "dependentSourceSets": [
  43. {
  44. "scopeId": "dependentSourceSetScopeId",
  45. "sourceSetName": "dependentSourceSetName"
  46. }
  47. ],
  48. "documentedVisibilities": ["PUBLIC", "PRIVATE", "PROTECTED", "INTERNAL", "PACKAGE"],
  49. "reportUndocumented": false,
  50. "skipEmptyPackages": true,
  51. "skipDeprecated": false,
  52. "jdkVersion": 8,
  53. "languageVersion": "1.7",
  54. "apiVersion": "1.7",
  55. "noStdlibLink": false,
  56. "noJdkLink": false,
  57. "includes": [
  58. "module.md"
  59. ],
  60. "analysisPlatform": "jvm",
  61. "sourceRoots": [
  62. "/home/ignat/IdeaProjects/dokka-debug-mvn/src/main/kotlin"
  63. ],
  64. "classpath": [
  65. "libs/kotlin-stdlib-1.9.10.jar",
  66. "libs/kotlin-stdlib-common-1.9.10.jar"
  67. ],
  68. "samples": [
  69. "samples/basic.kt"
  70. ],
  71. "suppressedFiles": [
  72. "src/main/kotlin/org/jetbrains/dokka/Suppressed.kt"
  73. ],
  74. "sourceLinks": [
  75. {
  76. "localDirectory": "src/main/kotlin",
  77. "remoteUrl": "https://github.com/Kotlin/dokka/tree/master/src/main/kotlin",
  78. "remoteLineSuffix": "#L"
  79. }
  80. ],
  81. "externalDocumentationLinks": [
  82. {
  83. "url": "https://docs.oracle.com/javase/8/docs/api/",
  84. "packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list"
  85. },
  86. {
  87. "url": "https://kotlinlang.org/api/latest/jvm/stdlib/",
  88. "packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list"
  89. }
  90. ],
  91. "perPackageOptions": [
  92. {
  93. "matchingRegex": ".*internal.*",
  94. "suppress": false,
  95. "reportUndocumented": false,
  96. "skipDeprecated": false,
  97. "documentedVisibilities": ["PUBLIC", "PRIVATE", "PROTECTED", "INTERNAL", "PACKAGE"]
  98. }
  99. ]
  100. }
  101. ],
  102. "pluginsClasspath": [
  103. "./dokka-base-1.7.20.jar",
  104. "./kotlinx-html-jvm-0.8.0.jar",
  105. "./analysis-kotlin-descriptors-1.7.20.jar",
  106. "./freemarker-2.3.31.jar"
  107. ],
  108. "pluginsConfiguration": [
  109. {
  110. "fqPluginName": "org.jetbrains.dokka.base.DokkaBase",
  111. "serializationFormat": "JSON",
  112. "values": "{\"separateInheritedMembers\":false,\"footerMessage\":\"© 2021 pretty good Copyright\"}"
  113. }
  114. ],
  115. "includes": [
  116. "module.md"
  117. ]
  118. }