Hi all,
I would like to use JSTL tags for jsp as <c:...> I'm having trouble identifying the artifact that I should add to my Maven pom. Has anyone used JSTL with Maven?
I have tried adding the following:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.1.2</version>
<scope>compile</scope>
</dependency>
This resulted in a jstl-1.1.2.jar in my WEB-INF/lib directory. All packages in this jar are like javax.servlet.jsp.jstl whereas the tld that I got refers to org.apache.taglibs.standard.tlv.JstlCoreTLV. Can anyone direct me to either the correct tld file or to the correct Maven dependency?
Thanks,
Regards
Peter