Our application now build depend on SB 1.0.1.RELEASE and Spring 2.5.4. We found that the SB 1.0.1.RELEASE hard coded to depend on Spring 2.5.2. in spring-batch-1.0.1.RELEASE.pom, which is out of our expectation.
Given this, we got the error of missing 2.5.2 dependencies when building our project as our repository only have Spring 2.5.4.Code:<properties> <maven.test.failure.ignore>true</maven.test.failure.ignore> <spring.framework.version>2.5.2</spring.framework.version> </properties> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.framework.version}</version> </dependency>
Of course, we can add 2.5.2 deps also but we don't think this is a desirable behavior. Please advise.


Reply With Quote