Skip to content

Commit

Permalink
Remove mixin help options from azure commands
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanjan90 committed Aug 24, 2020
1 parent 8d59422 commit 614f607
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
3 changes: 0 additions & 3 deletions src/main/java/gyro/azure/AzureCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import gyro.azure.keyvault.AzureKeyVaultCommand;
import gyro.azure.network.AzureApplicationGatewayCommand;
import gyro.core.command.GyroCommand;
import gyro.core.command.VersionCommand;
import picocli.CommandLine.Command;

@Command(name = "azure",
Expand All @@ -31,8 +30,6 @@
optionListHeading = "%nOptions:%n",
commandListHeading = "%nCommands:%n",
usageHelpWidth = 100,
mixinStandardHelpOptions = true,
versionProvider = VersionCommand.class,
subcommands = {
AzureKeyVaultCommand.class,
AzureApplicationGatewayCommand.class
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/gyro/azure/keyvault/AzureKeyVaultCommand.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package gyro.azure.keyvault;

import gyro.core.command.GyroCommandGroup;
import gyro.core.command.VersionCommand;
import picocli.CommandLine;

@CommandLine.Command(name = "key-vault",
Expand All @@ -13,8 +12,6 @@
optionListHeading = "%nOptions:%n",
commandListHeading = "%nCommands:%n",
usageHelpWidth = 100,
mixinStandardHelpOptions = true,
versionProvider = VersionCommand.class,
subcommands = {
AddVaultCertificateCommand.class,
AddVaultSecretCommand.class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
import gyro.core.command.GyroCommandGroup;
import picocli.CommandLine;

@CommandLine.Command(name = "application-gateway", description = "Manage azure application gateway certificate.", mixinStandardHelpOptions = true, subcommands = {
AddApplicationGatewayCertificateCommand.class,
ImportApplicationGatewayCertificateCommand.class,
ListApplicationGatewayCertificateCommand.class,
RemoveApplicationGatewayCertificateCommand.class})
@CommandLine.Command(name = "application-gateway",
description = "Manage azure application gateway certificate.",
subcommands = {
AddApplicationGatewayCertificateCommand.class,
ImportApplicationGatewayCertificateCommand.class,
ListApplicationGatewayCertificateCommand.class,
RemoveApplicationGatewayCertificateCommand.class
}
)
public class AzureApplicationGatewayCommand implements GyroCommandGroup {

}

0 comments on commit 614f607

Please sign in to comment.