Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've downloaded the jstl-1.1.2.jar from a Maven repository. I expected the .jar to contain the .tld file for the tags, but it doesn't. Does anyone know where I can find it?

share|improve this question

2 Answers

up vote 11 down vote accepted

JSTL 1.1 consists usually of two files: jstl.jar (the API) and standard.jar (the impl). The TLDs are in the standard.jar.

In our JSTL wiki page you can find the right download link for the both JARs.

share|improve this answer

BalusC was faster with the correct answer, I just want to add that the standard.jar is also available in maven central. Here are the coordinates:

<dependency>
    <groupId>taglibs</groupId>
    <artifactId>standard</artifactId>
    <version>1.1.2</version>
</dependency>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.