JSTL is referenced in the Shindig/Java Project Maven POM as a
dependency like so:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
And a CDDL licensed version of JSTL is pulled from Java.net, see this comment:
<!-- for jstl-1.2 for now.. -->
<repository>
<id>java.net</id>
<url>http://download.java.net/maven/2/</url>
</repository>
After doing a search of the codebase, it appears to me that the ONLY
reasons that JSTL is included are two JSP files in the Server:
login.jsp
authorize.jsp
Does anybody know if there is any other usage of JSTL or JSTL classes
in Shindig?
Thanks,
- Dave