A create on a ldi index using Analyzer:org.apache.lucene.analysis.StandardAnalyzer fails with an odci exception. The reason is that the Standard Analyzer was refactored in latest Lucene distribution according to Lucene 4.x package structure. Now, one has to use Analyzer:org.apache.lucene.analysis.standard.StandardAnalyzer instead. However, ldi code should be more strict or better smart about it, that is:
1. Tell the user about the refactoring in an appropriate exception error message, or
2. Silently exchange the preference from old to new under the hood.