Description
Ben Alex opened SPR-6512 and commented
Spring Framework 3 binding infrastructure (specifically the org.springframework.format.datetime.joda package) has runtime dependencies on the Joda library for advanced date handling. It may therefore be useful if the following dependency was therefore added to the relevant POM:
<dependency>
<groupId>org.joda</groupId>
<artifactId>com.springsource.org.joda.time</artifactId>
<version>1.6.0</version>
</dependency>
A benefit of this is you specify the Joda version you've designed and tested the org.springframework.format.datetime.joda against, which will help ensure end user projects (which would rarely use Joda themselves and have a specific version preference) can receive the correct dependency in a transitive manner.
Affects: 3.0 RC3