Sam
Sam

Reputation: 8693

Can you use ehcache 2.1.0 with Hibernate 3.3.x

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>

Upvotes: 2

Views: 451

Answers (1)

Pascal Thivent
Pascal Thivent

Reputation: 570365

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.

Upvotes: 1

Related Questions