I'm using JSF 2 with my own built facelet tags and I have that tags defined in taglib files, named xxxx.taglib.xml. The project is divided in war modules, which are merged by Maven when it's built. So each project has his own taglibs and I want to have all of them in the resulting project. So that's the question, is there a way to use a wildcard to have access to every taglib files using a single expression in web.xml? Similar to that:
<context-param>
<param-name>facelets.LIBRARIES</param-name>
<param-value>classpath*:**/*.taglib.xml</param-value>
</context-param>
That should load every file which ends with .taglib.xml from /WEB-INF/classes directory, but it's not working. I'm using Tomcat 6. What am I missing?