views:

27

answers:

1

ehcache-core-2.1.0.jar seems to have the following dependency, does it imply I cannot use this with hibernnate-core-3.3.x.jars

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>3.5.1-Final</version>
        <scope>provided</scope>
    </dependency>
+1  A: 

From the changelog, I don't see anything implying you can't use EHCache 2.1.0 with Hibernate 3.3 and that the situation changed between EHCache 2.0.0 and 2.1.0. Couldn't find a clear compatibility matrix though.

Pascal Thivent