src/main/java/org/apache/maven/plugins/scripting/FileScriptEvaluator.java [80:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ScriptEngine getEngine(ScriptEngineManager manager) throws UnsupportedScriptEngineException {
        ScriptEngine result;

        if (engineName != null && !engineName.isEmpty()) {
            result = manager.getEngineByName(engineName);

            if (result == null) {
                throw new UnsupportedScriptEngineException("No engine found by name \"" + engineName + "\n");
            }
        } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/maven/plugins/scripting/ResourceScriptEvaluator.java [84:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ScriptEngine getEngine(ScriptEngineManager manager) throws UnsupportedScriptEngineException {
        ScriptEngine result;

        if (engineName != null && !engineName.isEmpty()) {
            result = manager.getEngineByName(engineName);

            if (result == null) {
                throw new UnsupportedScriptEngineException("No engine found by name \"" + engineName + "\n");
            }
        } else {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



