I have the following Jetty config:
<webAppConfig>
<defaultsDescriptor>${project.basedir}/configuration/webdefaults.xml</defaultsDescriptor>
<contextPath>/app</contextPath>
<baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection">
<resourcesAsCSV>${project.basedir}/src/main/webapp,/external/dir,/another/dir</resourcesAsCSV>
</baseResource>
</webAppConfig>
Now, both in my src/main/webapp and in /external/dir, I have a directory called static, and resources from both are accessible through URL /app/static just fine. Yet, in /another/dir, I have a directory that is called special-static and for some reason, resources in it are not accessible (or at least not using URL /app/special-static).
Any idea what I might be doing wrong?