It looks like the conflict was with the spring dependencies.
My problem has been resolved by using this in my pom.xml
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring-release-version}</version>
<exclusions>
<exclusion>
<artifactId>org.springframework</artifactId>
<groupId>spring-beans</groupId>
</exclusion>
<exclusion>
<artifactId>org.springframework</artifactId>
<groupId>spring-core</groupId>
</exclusion>
</exclusions>
</dependency>
--
View this message in context:
http://tapestry.1045711.n5.nabble.com/Tapestry-5-2-1-upgrade-woes-tp2849844p3382512.html
Sent from the Tapestry - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]