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

io.quarkus.picocli.runtime.PicocliConfiguration Maven / Gradle / Ivy

package io.quarkus.picocli.runtime;

import java.util.Optional;

import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;

@ConfigRoot(phase = ConfigPhase.RUN_TIME)
public class PicocliConfiguration {
    /**
     * Name of bean annotated with {@link io.quarkus.picocli.runtime.annotations.TopCommand}
     * or FQCN of class which will be used as entry point for Picocli CommandLine instance.
     * This class needs to be annotated with {@link picocli.CommandLine.Command}.
     */
    @ConfigItem
    public Optional topCommand;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy