Unable to read TLD "META-INF/c.tld" Unable to read TLD "META-INF/c.tld" spring spring

Unable to read TLD "META-INF/c.tld"


After i moved using Indigo Eclipse 3.7 and took the lasted update of m2e, this problem happened to me, i remove the dependency below it worked well.

<dependency>  <groupId>javax.servlet.jsp</groupId>  <artifactId>jsp-api</artifactId>  <version>2.1</version>  <scope>provided</scope></dependency>

I'm not sure why the issues was gone, as my understanding new version of m2e has jsp compilation library already.


remove :
javax.servlet.jsp jsp-api 2.0 provided

from you pom.xml and that should do.. it worked in my case :-)


It looks like there is an issue with maven/m2eclipse plugin. Even I am seeing the same issue. By default it is pushing all the jar files to server lib directory. Which includes the scope "provided" jar files. This issue was fixed in old versions of m2eclipse. But it got introduced again it seems.