2008/5/8 Adam Hardy <[EMAIL PROTECTED]>:
> Does this replace the original jakarta-taglibs standard.jar or the
> javax.servlet.jstl.jar?
No, EL is part of the JSP specification since 2.0 version, so you can
find it (again!!! and I don't like it :-D ) under:
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
JSTL (API and implementation) 1.2 is here:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
<scope>runtime</scope>
</dependency>
Antonio
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]