Solr が認識する形でトークナイザーを作成する方法

(The bot translated the original post https://lists.apache.org/thread/wv23kzrhwhq5l8ws25nhofcolkqvl1qc into Japanese and reposted it under Apache License 2.0. The copyright of posted content is held by the original poster.)
こんにちは、
Solr 用にカスタムトークナイザーを作成しようとしています。
私は Java 開発者ではありませんが、Lucene のソースコードにある他のトークナイザーを参考にしながら、以下のリポジトリを作成しました。
https://github.com/yasar11732/lucene-zemberek
Maven を使用して JAR ファイルにパッケージ化し、それを他の依存関係の JAR とともに、インスタンスディレクトリ内の lib
ディレクトリに配置しました。
しかし、以下のエラーが発生しています。
"A SPI class of type org.apache.lucene.analysis.TokenizerFactory with name 'zemberekTokenizer' does not exist."
トークナイザーファクトリー内で NAME
を定義していることは、次のリンク先で確認できます。
https://github.com/yasar11732/lucene-zemberek/blob/master/src/main/java/com/github/yasar11732/lucene_zemberek/ZemberekTokenizerFactory.java#L14
Solr がこのトークナイザーを認識する前に、他に必要な手順があるでしょうか?
よろしくお願いします。
トピックへ返信するには、ログインが必要です。