in src/main/java/org/apache/maven/plugins/jmod/JModDescribeMojo.java [77:86]
private Commandline createJModDescribeCommandLine() throws MojoFailureException {
if (!jmodFile.exists() || !jmodFile.isFile()) {
throw new MojoFailureException("Unable to find " + jmodFile.getAbsolutePath());
}
Commandline commandLine = new Commandline();
commandLine.createArg().setValue("describe");
commandLine.createArg().setValue(jmodFile.getAbsolutePath());
return commandLine;
}