Author: pramirez Date: Thu Nov 10 19:05:09 2011 New Revision: 1200479 URL: http://svn.apache.org/viewvc?rev=1200479&view=rev Log: OODT-347 Updated project dependencies so correct spring schemas will be available on classpath. For those with existing installations simply update your schema references:
Change xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd" To xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" Then you can work offline Modified: oodt/trunk/crawler/pom.xml Modified: oodt/trunk/crawler/pom.xml URL: http://svn.apache.org/viewvc/oodt/trunk/crawler/pom.xml?rev=1200479&r1=1200478&r2=1200479&view=diff ============================================================================== --- oodt/trunk/crawler/pom.xml (original) +++ oodt/trunk/crawler/pom.xml Thu Nov 10 19:05:09 2011 @@ -172,8 +172,13 @@ the License. </dependency> <dependency> <groupId>org.springframework</groupId> - <artifactId>spring-hibernate3</artifactId> - <version>2.0.8</version> + <artifactId>spring-beans</artifactId> + <version>2.5.4</version> + </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>2.5.4</version> </dependency> <dependency> <groupId>org.apache.geronimo.javamail</groupId>
