public ScriptRunner()

in src/main/java/org/apache/maven/shared/scriptinterpreter/ScriptRunner.java [69:75]


    public ScriptRunner() {
        scriptInterpreters = new LinkedHashMap<>();
        scriptInterpreters.put("bsh", new BeanShellScriptInterpreter());
        scriptInterpreters.put("groovy", new GroovyScriptInterpreter());
        globalVariables = new HashMap<>();
        classPath = new ArrayList<>();
    }