Error building maven project
I have an existing maven project that has been running fine within eclipse. If I checkout the files and have intellij create a new maven project, I get the following error when building;
Error: Invalid indexed property 'not empty requestScope['section']
I think it is coming from the following code in a jsp tag file
<c:choose>
<c:when test="${not empty requestScope['section']}">
/sectionExtra/${requestScope['section'].stringRep}/${courseExtra.stringRep}/${courseExtra.contentPath}
</c:when>
<c:otherwise>
Any ideas on how to get around this error? It would be great if the compiler just didn't look at tag files when building but I can't find any way to turn it off. I'm just trying to run a simple unit test in another part of the app.
thanks in advance
-Eric
Please sign in to leave a comment.
I've gotten around the issue by excluding those sources from the module.
Hi, Eric,
This problem will be fixed in next 8.1.x eap/bugfix release and next 9.0 eap.
If this file is under a filtered Maven's resources folder, try disabling resource filtering.
Thanks,
Anton Makeev