Problems running dokka-cli-1.4.0-rc.jar from the command line

Hello,

I’m having similar problems when trying to run dokka on the CLI.

To simplify my experiments, I put all the jars in the root folder of the project that shall be documented.

Here is the command I’ve tried, based on posts above:

C:\Users\myuser\Downloads\my-project-master\my-project-master>java -jar dokka-cli-1.4.20.jar -pluginsClasspath “dokka-base-1.4.20.jar;dokka-analysis-1.4.20.jar;kotlin-analysis-compiler-1.4.20.jar;kotlin-analysis-intellij-1.4.20.jar;kotlinx-coroutines-core-1.3.9.jar” -moduleName CODEZ -sourceSet “-src c:\users\myuser\downloads\my-project-master\my-project-master\src”

The output ( I have ommited hte loading of modules because its a long list - please let me know if it is relevant ):

WARN: Dokka 1.4.* is an alpha project
PROGRESS: Initializing plugins
Loaded plugins: [org.jetbrains.dokka.base.DokkaBase]
Loaded: [
ExtensionPoint: org.jetbrains.dokka.CoreExtensions/allModulePageCreator,

    ...

]
Suppressed: [

]
PROGRESS: Validity check
PROGRESS: Creating documentation models
WARN: The registry key ‘java.correct.class.type.by.place.resolve.scope’ accessed, but not loaded yet
PROGRESS: Transforming documentation model before merging
PROGRESS: Merging documentation models
PROGRESS: Transforming documentation model after merging
PROGRESS: Creating pages
PROGRESS: Transforming pages
WARN: For Main: expected 1 page, but got 2
WARN: For Main: expected 1 page, but got 17
WARN: For TestTeacherHiddenProject: expected 1 page, but got 5
WARN: For TestTeacherProject: expected 1 page, but got 5
WARN: For TestStudent: expected 1 page, but got 3
PROGRESS: Rendering
ERROR: Failed to write org.jetbrains.dokka.base.renderers.FileWriter@71f06339. Parent job is Cancelling
kotlinx.coroutines.JobCancellationException: Parent job is Cancelling; job=ScopeCoroutine{Cancelling}@7b080849
Caused by: java.lang.NoClassDefFoundError: kotlinx/html/stream/StreamKt
at org.jetbrains.dokka.base.renderers.html.HtmlRenderer.buildHtml(HtmlRenderer.kt:717)

Any ideas?

Thanks in advance.