I had to comment some lines in ReportNarrative.java that caused compiler errors:
ReportNarrative.java - lines 936 to 944
//<<<<<<< .mine
doc.addText(" ");
// writeSource((Source) ((PropertySource) prop).getTargetEntity().get(), "", prop.getPropertyValue("PAGE"));
//||||||| .r13653
// writeSource((Source) ((PropertySource) prop).getTargetEntity().get(), "", prop.getPropertyValue("PAGE"));
//=======
Property text = prop.getProperty(new TagPath(".:DATA:TEXT"));
writeSource((Source) ((PropertySource) prop).getTargetEntity().get(), "", prop.getPropertyValue("PAGE"), text != null ? text.getValue():"");
//>>>>>>> .r13672
Now it is working fine again.
Thanks Andreas