private Commandline createJModHashCommandLine()

in src/main/java/org/apache/maven/plugins/jmod/JModHashMojo.java [108:118]


    private Commandline createJModHashCommandLine() {
        Commandline cmd = new Commandline();

        cmd.createArg().setValue("hash");

        if (dryRun) {
            cmd.createArg().setValue("--dry-run");
        }

        return cmd;
    }