Eclipse: Ganymede -> Galileo! Taglib erro!

atualizei meu eclipse para o Galileo. Tudo funcionou blz. Entretanto esta acusando um erro de compilação, que não ocorria na versão anterior. Percebi também que so ocorre na compilação, quando executo o projeto mesmo assim tudo funciona normal.
O erro esta na verificação da minha TagLib.

Erro Aparecendo:
The content of element type “taglib” must match “(tlibversion,jspversion?,shortname,uri?,info?,tag+)”. taglib.tld /projeto/src/META-INF line 3 XML Problem

TagLib cirada:

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
<taglib>
	<display-name>"My Tags"</display-name>
    <tlibversion>2.0</tlibversion>
    <jspversion>1.5</jspversion>
    <shortname>m</shortname>
    <uri>/myTags</uri>

<tag>
    <name>paginacao</name>
    <tagclass>br.com.framework.struts.tags.Paginacao</tagclass>
    <attribute>
      <name>current</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
      <name>size</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
      <name>visibles</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
      <name>action</name>
      <required>true</required>
      <rtexprvalue>true</rtexprvalue>
    </attribute>action
    <attribute>
      <name>parameters</name>
      <required>false</required>
      <rtexprvalue>true</rtexprvalue>
    </attribute>action
</tag>

</taglib>

Alguém sabe como resolver ?