io.quarkus.cli.image.BaseImageSubCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cli Show documentation
Show all versions of quarkus-cli Show documentation
Quarkus command line utility
package io.quarkus.cli.image;
import java.util.Optional;
import io.quarkus.cli.BuildToolDelegatingCommand;
import picocli.CommandLine.ParentCommand;
public class BaseImageSubCommand extends BaseImageCommand {
@ParentCommand
BaseImageCommand parent;
@Override
public Optional getParentCommand() {
return Optional.of(parent);
}
}