org.nasdanika.cli.MixInRequirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cli Show documentation
Show all versions of cli Show documentation
Extensible Command Line Interface
package org.nasdanika.cli;
import java.util.List;
import picocli.CommandLine;
/**
* Requirement for a mix-in to add to the command
* identified by the path or the root command if the command path is null or empty.
*/
public record MixInRequirement(List commandPath) {
}