protected void blockIfNecessary()

in src/main/java/org/apache/sling/maven/kickstart/run/AbstractStartStopMojo.java [71:81]


    protected void blockIfNecessary() throws MojoFailureException {
        if (shouldBlockUntilKeyIsPressed) {
            // http://stackoverflow.com/a/21977269/5155923
            try {
                prompter.prompt("Press Enter to continue");
            } catch (PrompterException e) {
                throw new MojoFailureException("Could not prompt for user input. Maven is probably running in non-interactive mode! Do not use parameter 'shouldBlockUntilKeyIsPressed' in that case", e);
            }
        }

    }