Java – Maven reference for springframework.org/tags form per spring source ide

eclipsejavaspringsts-springsourcetoolsuite

Hi new to java and I'm getting the following errors per the following lines from a .jsp that I have inherited. Using spring source as my editor.

NOTE: This loads fine per my latest eclipse (kepler) IDE.

<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>

Errors:

Can not find the tag library descriptor for "http://www.springframework.org/tags/
form"
Can not find the tag library descriptor for "http://www.springframework.org/
tags"

I have the following defined in my pom.xml:

<spring.version>3.2.1.RELEASE</spring.version>

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>${spring.version}</version>
</dependency>

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>${spring.version}</version>
</dependency>

Best Answer

I added:

    <dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
   </dependency>

To mypom.xml file this will resolved the issue.