Hi.
Sure, when running my unit tests which use my live Spring config I get
this. Currently in my pom I have:
<dependency>
<groupId>com.googlecode.ehcache-spring-annotations</groupId>
<artifactId>ehcache-spring-annotations</artifactId>
<version>1.1.1</version>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</exclusion>
</exclusions>
</dependency>
I am excluding the dependencies in there as it caused a
misconfiguration, I am already pulling in Spring 3.0.3.RELEASE. Do I
also need another dependency for
org.springframework.cache.ehcache.EhCacheManagerFactoryBean ?
Thanks for your help,
-- Ross