public void execute()

in src/main/java/org/apache/maven/plugins/jmod/JModHashMojo.java [92:106]


    public void execute() throws MojoExecutionException, MojoFailureException {

        String jModExecutable;
        try {
            jModExecutable = getJModExecutable();
        } catch (IOException e) {
            throw new MojoFailureException("Unable to find jmod command: " + e.getMessage(), e);
        }

        Commandline cmd = createJModHashCommandLine();
        cmd.setExecutable(jModExecutable);

        // executeCommand( cmd, outputDirectory );

    }