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



src/main/java/org/apache/maven/plugins/jmod/JModListMojo.java [77:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private Commandline createJModListCommandLine() throws MojoFailureException {
        if (!jmodFile.exists() || !jmodFile.isFile()) {
            throw new MojoFailureException("Unable to find " + jmodFile.getAbsolutePath());
        }

        Commandline commandLine = new Commandline();
        commandLine.createArg().setValue("list");
        commandLine.createArg().setValue(jmodFile.getAbsolutePath());
        return commandLine;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



