richfaces-bom-4.0.0-20110325.220425-300.pom has
| <dependency> | ||||
| <groupId>javax.servlet</groupId> | ||||
| <artifactId>jstl</artifactId> | ||||
| <version>1.2</version> | ||||
| </dependency> |
whereas richfaces-bom-4.1.0.20110805-M1.pom has
| <dependency> | |
| <groupId>javax.servlet.jsp.jstl</groupId> | |
| <artifactId>jstl-api</artifactId> | |
| <version>1.2</version> | |
| </dependency> |
So my pom.xml with
| <dependency> | |||
| <groupId>javax.servlet</groupId> | |||
| <artifactId>jstl</artifactId> | |||
| </dependency> |
stops working in 4.1.0 M1. I wonder if this change is on purpose or is it a bug.
Thanks
uj,
The jstl artifact moved in maven central. You'll have to update your POM. Here's a blog entry that explains it:
http://www.andygibson.net/blog/quickbyte/jstl-missing-from-maven-repositories/
Brian