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
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class DependencyRuntime extends CamelCommand {
@CommandLine.Parameters(description = "The pom.xml to analyze", arity = "1", paramLabel = "<pom.xml>")
Path pomXml;

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
String repositories;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public abstract class ExportBaseCommand extends CamelCommand {

protected List<String> files = new ArrayList<>();

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
protected String repositories;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public class Run extends CamelCommand {
split = ",")
List<String> dependencies = new ArrayList<>();

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
String repositories;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class TransformMessageAction extends ActionWatchCommand {
description = "Pretty print message body when using JSon or XML format")
boolean pretty;

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
String repositories;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class CatalogBaseCommand extends CamelCommand {
defaultValue = "io.quarkus.platform")
String quarkusGroupId = "io.quarkus.platform";

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories for download on-demand (Use commas to separate multiple repositories)")
String repos;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public class CatalogDoc extends CamelCommand {
defaultValue = "io.quarkus.platform")
String quarkusGroupId = "io.quarkus.platform";

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories for download on-demand (Use commas to separate multiple repositories)")
String repos;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class CamelUpdateMixin {
description = "Runtime (${COMPLETION-CANDIDATES})")
RuntimeType runtime = RuntimeType.main;

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories for download on-demand (Use commas to separate multiple repositories)")
String repos;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
description = "List available update versions for Apache Camel and its runtime variants")
public class UpdateList extends CamelCommand {

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories for download on-demand (Use commas to separate multiple repositories)")
String repos;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public class VersionSet extends CamelCommand {
description = "Runtime (${COMPLETION-CANDIDATES})")
RuntimeType runtime;

@CommandLine.Option(names = { "--repo", "--repos" }, description = "Maven repository for downloading the dependencies")
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Maven repository for downloading the dependencies (Use commas to separate multiple repositories)")
String repo;

@CommandLine.Option(names = { "--reset" }, description = "Reset by removing any custom version settings")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public class CodeSchemaGenerator extends CamelCommand {
description = "Whether to allow automatic downloading JAR dependencies (over the internet)")
boolean download = true;

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
String repositories;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class KubernetesRun extends KubernetesBaseCommand {
@CommandLine.Option(names = { "--service-account" }, description = "The service account used to run the application.")
String serviceAccount;

@CommandLine.Option(names = { "--property" },
@CommandLine.Option(names = { "--prop", "--property" },
description = "Add a runtime property or properties from a file (syntax: [my-key=my-value|file:/path/to/my-conf.properties|/path/to/my-conf.properties].")
String[] properties;

Expand Down Expand Up @@ -183,7 +183,7 @@ public class KubernetesRun extends KubernetesBaseCommand {

// Export base options

@CommandLine.Option(names = { "--repos" },
@CommandLine.Option(names = { "--repo", "--repos" },
description = "Additional maven repositories (Use commas to separate multiple repositories)")
String repositories;

Expand Down