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

org.camunda.community.migration.converter.cli.ConvertCommand Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package org.camunda.community.migration.converter.cli;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import picocli.CommandLine;
import picocli.CommandLine.Command;

@Command(
    name = "backend-diagram-converter-cli",
    description = {
      "%nExecute as:",
      "%njava -Dfile.encoding=UTF-8 -jar backend-diagram-converter-cli.jar%n"
    },
    mixinStandardHelpOptions = true,
    optionListHeading = "Options:%n",
    parameterListHeading = "Parameter:%n",
    showDefaultValues = true,
    versionProvider = MavenVersionProvider.class,
    subcommands = {ConvertLocalCommand.class, ConvertEngineCommand.class})
public class ConvertCommand {
  public static final Logger LOG_CLI = LoggerFactory.getLogger("cli");

  public static void main(String[] args) {
    int exitCode = new CommandLine(new ConvertCommand()).execute(args);
    System.exit(exitCode);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy