io.github.eroshenkoam.allure.AllurePDF Maven / Gradle / Ivy
The newest version!
package io.github.eroshenkoam.allure;
import picocli.CommandLine;
public class AllurePDF {
public static void main(String[] args) {
final CommandLine cmd = new CommandLine(new MainCommand());
final CommandLine.ParseResult parseResult = cmd.parseArgs(args);
if (!parseResult.errors().isEmpty()) {
System.out.println(cmd.getUsageMessage());
}
int exitCode = cmd.execute(args);
System.exit(exitCode);
}
}