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

com.github.ngeor.yak4jcli.Main Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package com.github.ngeor.yak4jcli;

import picocli.CommandLine;

/**
 * Main class.
 */
@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
@CommandLine.Command(subcommands = {
    NewProjectCommand.class,
    ListProjectsCommand.class,
    BumpCommand.class,
    CommandLine.HelpCommand.class
})
public class Main {
    /**
     * Main entrypoint for the program.
     */
    public static void main(String[] args) {
        //noinspection InstantiationOfUtilityClass
        int exitCode = new CommandLine(new Main()).execute(args);
        System.exit(exitCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy