On 6/1/2016 1:10 PM, John Bickerstaff wrote: > @Joe: > > Is it possible that the jar's package name does not match the entry in the > sample solrconfig.xml file? > > The solrconfig.xml example file in the test directory contains the > following package name: > <queryParser name="synonym_edismax" > class="com.github.healthonnet.search.SynonymExpandingExtendedDismaxQParserPlugin"> > > However, the jar file (when unzipped) has the following directory structure > down to the same class name: > > org --> apache --> solr --> search > > I just tried with the name change to the org.apache.... package name in the > solrconfig.xml file and got no errors.
Looks like the package name is indeed the problem here. They changed the package name from org.apache.solr.search to com.github.healthonnet.search in the LATEST source code release -- 5.0.4. The code in the 5.0.3 version (and the 2.0.0 version indicated in the earlier message) uses org.apache.solr.search. I cannot find any files in the 2.0.0 zipfile download that contain the new package name, so I'm curious where the incorrect information on how to configure Solr to use the plugin was found. I did not check the tarball download. Thanks, Shawn