Hello

I am working on windows with

SpringSource Tool Suite
Version: 2.6.1.RELEASE
Build Id: 201105041000

Always when I create a new and predifined of type Spring MVC Template project (I can do this many times with the same result) and inmediately build this default project, always appear these two warnings

XML Problem (2 items)

Code:
Description	Resource	Path	Location	Type
The file cannot be validated as the XML definition 
"D:\XXX\workspace-sts-2.6.1.RELEASE\rtrrertr\src\main\java\log4j.dtd 
(El sistema no puede hallar el archivo especificado)" 
that is specified as describing the syntax of the file cannot be located.	
log4j.xml	
/someproject/src/main/resources	line 2	XML Problem


Description	Resource	Path	Location	Type
The file cannot be validated as the XML definition 
"D:\XXX\workspace-sts-2.6.1.RELEASE\rtrrertr\src\test\resources\log4j.dtd 
(El sistema no puede hallar el archivo especificado)" 
that is specified as describing the syntax of the file cannot be located.	
log4j.xml	
/someproject/src/test/resources	line 2	XML Problem
El sistema no puede hallar el archivo especificado
means
the system cant find the specific file

When I open each file I see

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
Is normal this?

Thanks in advanced