private void displayShell(InputStream in, PrintStream out) {
// Display version of Maven being used right before showing the prompt
String version = (String)session.getSystemProperties().get("maven.build.version");
getLog().info("Using Maven version: " + version);
JLineCliConsole console = new JLineCliConsole(in, out, getLog(), commandsCompletor, prompt);
new CliShell(cliCommands, console).run();
}