All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.cli.image.BaseImageSubCommand Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy