![JAR search and dependency download from the Maven repository](/logo.png)
io.quarkus.cli.plugin.PluginCatalogOptions 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.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