JSF Spring Maven ERRO: cvc-elt.1: Cannot find the declaration of element 'beans'

Olá,
Alguém saberia informa se a diferença de versões entre o spring validator e o spring podem estar causando este erro?
Grato,

Abaixo segue o arquivo xml que esta causando esse problema…

<?xml version="1.0" encoding="UTF-8"?>

<import resource="classpath:/autenticacao-test.xml" />

<!-- View scope -->
<bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
	<property name="scopes">
		<map>
			<entry key="view">
				<bean class="br.com.empresa.web.view.scope.ViewScope" />
			</entry>
		</map>
	</property>
</bean>

<bean id="messageSource" name="messageSource"
	class="org.springframework.context.support.ResourceBundleMessageSource"
	p:fallbackToSystemLocale="false" p:cacheSeconds="0">
	<property name="basenames">
		<array>
			<value>br/com/empresa/frameworkweb/view/bundle/message</value>
		</array>
	</property>
</bean>