Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dokka-runners/runner-cli/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ version=2.1.0-SNAPSHOT

org.jetbrains.dokka.javaToolchain.mainCompiler=8
org.jetbrains.dokka.javaToolchain.testLauncher=8
org.jetbrains.dokka.enforceGradleKotlinCompatibility=true
org.jetbrains.dokka.enforceGradleKotlinCompatibility=false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The current stdlib 2.2 is compatible with the stdlib from the compiler.

kotlin.compiler.runViaBuildToolsApi=true
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public class GlobalArguments(args: Array<String>) : DokkaConfiguration {

public val loggingLevel: LoggingLevel by parser.option(
ArgType.Choice(toVariant = {
when (it.toUpperCase().trim()) {
when (it.uppercase().trim()) {
"DEBUG", "" -> LoggingLevel.DEBUG
"PROGRESS" -> LoggingLevel.PROGRESS
"INFO" -> LoggingLevel.INFO
Expand Down
Loading