In older versions of JBoss AS, the Tomcat jasper JSPC compiler could be used to precompile JSP pages to ensure that they were all syntactically valid JSP files.
According to https://access.redhat.com/solutions/175893, as of JB EAP 6, the JSPC compiler is no longer supported.
How am I supposed to validate that JSP files are syntactically correct during a build/package process? If not, it seems that the only solution is to launch a full JB instance during the test phase and navigate to every JSP individually to ensure that it compiles properly each time.
Is there not a WildFly supported mechanism to validate JSP pages during the build phase?