}
private void showDiff( @Nonnull File src, @Nonnull File generated ) throws IOException, InterruptedException {
String commandLine = buildCommandLine( src.getAbsolutePath(), generated.getAbsolutePath() );
getLog().info( "Executing <" + commandLine + ">" );
Executer executer = new Executer( new ProcessBuilder( Lists.newArrayList( Splitter.on( " " ).split( commandLine ) ) ), true );
executer.execute();
}