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

technology.dice.dicewhere.downloader.main.Main Maven / Gradle / Ivy

The newest version!
package technology.dice.dicewhere.downloader.main;

import picocli.CommandLine;
import technology.dice.dicewhere.downloader.picocli.commands.DownloadCommand;
import technology.dice.dicewhere.downloader.picocli.PrintExceptionMessageHandler;

/**
 * Utility program to assist with the download of IP to Geolocation databases.
 */
public class Main {
  public static void main(String[] args) {
    final int result =
        new CommandLine(new DownloadCommand())
            .setCaseInsensitiveEnumValuesAllowed(true)
            .setExecutionExceptionHandler(new PrintExceptionMessageHandler())
            .execute(args);
    System.exit(result);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy