Re: BaseTokenFilterFactory not found in plugin

2011-11-03 Thread Chris Hostetter
: myorg/solr/analysis/*.java`. I then made a `.jar` file from the .class files : and put the .jar file in the solr/lib/ directory. I modified schema.xml to : include the new filter: what exactly do you mean by "the solr/lib/ directory" ? ... if you mean that "solr" is the solr home dir where you

BaseTokenFilterFactory not found in plugin

2011-10-20 Thread Michael Craig
I'm trying to write and use a custom filter for Solr. I've got a filter factory in myorg/solr/analysis/TestThingFilterFactory.java: package myorg.solr.analysis; import org.apache.lucene.analysis.TokenStream; import org.apache.solr.analysis.BaseTokenFilterFactory; import myorg.solr