I want to add a dependency in my project to use dynamic report, i found this:
<dependency>
<groupId>net.sourceforge.dynamicreports</groupId>
<artifactId>dynamicreports-core</artifactId>
<version>4.0.0</version>
</dependency>
but when i add it to my pom.xml
, i got this error :The method isNoneBlank(String) is undefined for the type StringUtils
error in StringUtils.isNoneBlank(...)
.
I think it's a conflit in versions of lang3
how can i add an exclude for commons.lang3
?