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

command.airline.CliOptionsParseErrorStrategyCli Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package command.airline;

import com.github.rvesse.airline.annotations.Cli;
import com.github.rvesse.airline.annotations.Command;

import command.airline.CliOptionsParseErrorStrategyCli.ParseErrorStrategyCliCommand;
import io.quarkiverse.githubapp.command.airline.CliOptions;
import io.quarkiverse.githubapp.command.airline.CliOptions.ParseErrorStrategy;

// tag::parse-error-strategy[]
@Cli(name = "@bot", commands = { ParseErrorStrategyCliCommand.class })
@CliOptions(parseErrorStrategy = ParseErrorStrategy.NONE) // <1>
public class CliOptionsParseErrorStrategyCli {
    // end::parse-error-strategy[]

    @Command(name = "command")
    static class ParseErrorStrategyCliCommand implements Runnable {

        @Override
        public void run() {
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy