The javac error occurs at the following line of the .java file:
_jspx_dependants.add("-tldsfromclasspath\stringutils.tld");
and the cause of the error is the unescaped path separator: Invalid escape sequence (valid ones are \b \t \n \f \r \" \')
Fixed by converting backslash to forward slash, avoiding escaping issues. (cannot assign/resolve the issue)
Fixed by converting backslash to forward slash, avoiding escaping issues.
(cannot assign/resolve the issue)