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

org.hjug.refactorfirst.Main Maven / Gradle / Ivy

The newest version!
package org.hjug.refactorfirst;

import picocli.CommandLine;

public class Main {
    public static void main(String[] args) {
        int exitCode = new CommandLine(new ReportCommand())
                .setCaseInsensitiveEnumValuesAllowed(true)
                .execute(args);
        System.exit(exitCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy