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

io.quarkus.cli.plugin.PluginCatalogOptions Maven / Gradle / Ivy

There is a newer version: 3.18.0.CR1
Show newest version
package io.quarkus.cli.plugin;

import java.nio.file.Path;
import java.util.Optional;

import picocli.CommandLine;

public class PluginCatalogOptions {

    @CommandLine.Option(names = {
            "--user" }, defaultValue = "", paramLabel = "USER", order = 4, description = "Use the user catalog.")
    boolean user;

    @CommandLine.Option(names = {
            "--user-dir" }, paramLabel = "USER_DIR", order = 5, description = "Use the user catalog directory.")
    Optional userDirectory = Optional.empty();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy