I'm getting really frustrated with one particular error I'm running into trying to work with Hibernate search 4.0.0.CR1 -
Code:
java.lang.NoSuchMethodError: org.jboss.logging.Logger.getMessageLogger(Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object;
at org.hibernate.search.util.logging.impl.LoggerFactory.make(LoggerFactory.java:37)
at org.hibernate.search.backend.impl.EventSourceTransactionContext.<clinit>(EventSourceTransactionContext.java:58)
at org.hibernate.search.impl.FullTextSessionImpl.<init>(FullTextSessionImpl.java:105)
at org.hibernate.search.Search.getFullTextSession(Search.java:45)
at org.hibernate.search.jpa.impl.FullTextEntityManagerImpl.getFullTextSession(FullTextEntityManagerImpl.java:71)
at org.hibernate.search.jpa.impl.FullTextEntityManagerImpl.createIndexer(FullTextEntityManagerImpl.java:292)
Trying jboss-logger 3.0.1.GA, as well as a variety of different jboss-logging-spi's, different versions, trying jboss-commons, and nothing seems to be working. Since it is a method problem, jarfinder-type tools don't work, and i couldn't find a listing of this method in javadocs.
Trying hibernate-test (I actually didn't know that existed, I might look into that more) also didn't seem to help.
The issue particularly happens when I try to rebuild the index.
EDIT: this is upgrading a prior working implementation from 3.4.1.Final to 4.0.0.CR1, and app tests such as rebuildindex are failing related to the above message.
thanks for any help on this, I'm using Maven 2, hibernate-search 4.0.0.CR1
-D