Hello,

I am just getting started with Spring Mobile.  Based on the instructions, I included the following Maven dependency:

Code:
<dependency>
    <groupId>org.springframework.mobile</groupId>
    <artifactId>spring-mobile-device</artifactId>
    <version>1.0.0.M3</version>
</dependency>
When I look at the POM for Spring Mobile, I see that this project is dependent on spring-webmvc, 3.0.5.RELEASE. When I try to add a DeviceWebArgumentResolver however, the IDE complains:

Code:
"Element 'annotation-driven' must have no character or element information item [children], because the type's content type is empty."
Here, I am referencing the following schema:

Code:
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
Does the "argument-resolvers" child element require a dependency on Spring 3.1?

Thanks!