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

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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy