> Your best bet is to just try pulling in the newest versions of Hibernate > as dependencies. 3.4.2 relies on the newer version (3.5-ish).
Thanks, that did the trick. For the record, the pom.xml dependency versions in the current https://wiki.jasig.org/display/CASUM/Configuring don't apply to 3.4.2. The hibernate artifactID for 3.2.5.ga needed to be changed to hibernate-core for 3.5.0-CR-2, like so: <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>3.5.0-CR-2</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>3.5.0-CR-2</version> </dependency> and this repo needed to be enabled in the pom.xml: <repository> <id>jboss</id> <name>JBoss Repository</name> <layout>default</layout> <url>http://repository.jboss.com/maven2</url> </repository> I also found it necessary to fetch the MySQL connector from http://dev.mysql.com/downloads/connector/j/ and install the .jar into $TOMCAT6_HOME/lib. Shawn -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
