I have added the dependency in pom.xml
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
but when i update maven dependencies and import the EscapeStringUtils
using
import org.apache.commons.lang3.StringEscapeUtils;
i get it red underlined and error which states :
The import org.apache.commons.lang3.StringEscapeUtils cannot be resolved
Jar file is there (downloaded) now how can i fix it, i have no idea. Kindly help me.
Thanks