workerJvmArgs

Deprecated

Please move worker options to `DokkatooExtension.dokkaGeneratorIsolation`. Worker options were moved to allow for configuring worker isolation

Please move worker options:

// build.gradle.kts

dokkatoo {
dokkaGeneratorIsolation = ProcessIsolation {
jvmArgs = listOf(
"-XX:+UseStringDeduplication",
)
}
}

Worker options were moved to allow for configuring worker isolation.

See also