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

io.quarkus.cli.common.TargetQuarkusVersionGroup Maven / Gradle / Ivy

There is a newer version: 3.17.0.CR1
Show newest version
package io.quarkus.cli.common;

import picocli.CommandLine;

public class TargetQuarkusVersionGroup {

    @CommandLine.Option(paramLabel = "targetStream", names = { "-S",
            "--stream" }, description = "A target stream, for example:%n  2.0")
    public String streamId;

    @CommandLine.Option(paramLabel = "targetPlatformVersion", names = { "-P",
            "--platform-version" }, description = "A specific target Quarkus platform version, for example:%n"
                    + "  2.2.0.Final%n")
    public String platformVersion;

    //@CommandLine.Option(names = { "-L",
    //        "--latest" }, description = "Use the latest Quarkus platform version")
    //public boolean latest;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy