Author: bvahdat
Date: Sun Feb 3 11:16:29 2013
New Revision: 1441891
URL: http://svn.apache.org/viewvc?rev=1441891&view=rev
Log:
Fixed the broken build when using the spring3.2 profile.
Modified:
camel/trunk/examples/camel-example-gauth/pom.xml
Modified: camel/trunk/examples/camel-example-gauth/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/examples/camel-example-gauth/pom.xml?rev=1441891&r1=1441890&r2=1441891&view=diff
==============================================================================
--- camel/trunk/examples/camel-example-gauth/pom.xml (original)
+++ camel/trunk/examples/camel-example-gauth/pom.xml Sun Feb 3 11:16:29 2013
@@ -52,6 +52,13 @@
<artifactId>com.google.gdata-calendar</artifactId>
<version>${google-gdata-version}</version>
</dependency>
+ <!-- beginning from spring 3.2.x spring-webmvc doesn't bring the transitive dependency
-->
+ <!-- to spring-web anymore so that we need to explicitly declare this dependency
here -->
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-web</artifactId>
+ <version>${spring-version}</version>
+ </dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
|