From 57e6b6210f481dbe03cc01b954e30cb365dd2b2e Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Thu, 19 Mar 2020 11:09:07 +0100 Subject: Update to 1.4-M2, Native fails with an exception --- runners/cli/src/main/kotlin/cli/main.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'runners/cli') diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index 607a58a7..f0d22aff 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -71,7 +71,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "main" ) - override val classpath: List by parser.repeatableOption( + override val classpath: List by parser.repeatableOption( listOf("-classpath"), "Classpath for symbol resolution" ) @@ -86,12 +86,12 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "Source file or directory (allows many paths separated by the system path separator)" ) { SourceRootImpl(it) } - override val samples: List by parser.repeatableOption( + override val samples: List by parser.repeatableOption( listOf("-sample"), "Source root for samples" ) - override val includes: List by parser.repeatableOption( + override val includes: List by parser.repeatableOption( listOf("-include"), "Markdown files to load (allows many paths separated by the system path separator)" ) @@ -150,7 +150,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "Disable documentation link to JDK" ) - override val suppressedFiles: List by parser.repeatableOption( + override val suppressedFiles: List by parser.repeatableOption( listOf("-suppressedFile"), "" ) @@ -173,7 +173,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi { Platform.DEFAULT } ) - override val targets: List by parser.repeatableOption( + override val targets: List by parser.repeatableOption( listOf("-target"), "Generation targets" ) @@ -192,7 +192,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi { mutableListOf() } ) - override val sourceLinks: MutableList by parser.repeatableOption( + override val sourceLinks: MutableList by parser.repeatableOption( listOf("-srcLink"), "Mapping between a source directory and a Web site for browsing the code" ) { -- cgit