I am trying to call a method, but I keep getting the following error:
Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/text/StringEscapeUtils
From what I understood I was supposed to have this dependency in my build.gradle
file:
dependecies {
...
compile group: 'org.apache.commons', name: 'commons-text', version: '1.6'
...
}
I did that, but I keep getting the abovementioned error. I also tried the v1.9
of org.apache.commons-commons-text
dependency as well, again with the same results.
Is there something else I am missing?
I also tried to do what was answered in this question but it does not seem to work.