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

io.quarkus.domino.cli.Version Maven / Gradle / Ivy

There is a newer version: 0.0.111
Show newest version
package io.quarkus.domino.cli;

import io.quarkus.domino.DominoInfo;
import java.util.concurrent.Callable;
import picocli.CommandLine;

@CommandLine.Command(name = "version", header = "Display version information.")
public class Version implements Callable {

    @Override
    public Integer call() throws Exception {
        System.out.println(DominoInfo.VERSION);
        return CommandLine.ExitCode.OK;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy