Hi,
never seen this before. What OS are you running on? Which JDK are you using? provide as much information as possible about your environment that might help to narrow down your problem.
Have you made sure that it is Hibernate Search which causes the problem? You could try to run this (provided you are using maven):
Code:
mvn archetype:generate -DarchetypeCatalog=http://repository.jboss.com/maven2/archetype-catalog.xml
You will get a list of archetypes presented. Select the Hibernate Search one and specify the group, artifactId and version values for your test project. After that the maven archetype plugin will create a sample Hibernate Search project for you. just run:
Code:
mvn test
This way you will be able to tell if the problem is really with Hibernate Search alone.
--Hardy