我想在我的项目中添加一个依赖项来使用动态报告,我发现了这个:
<dependency>
<groupId>net.sourceforge.dynamicreports</groupId>
<artifactId>dynamicreports-core</artifactId>
<version>4.0.0</version>
</dependency>
但是当我将它添加到我的时pom.xml
,我得到了这个错误:The method isNoneBlank(String) is undefined for the type StringUtils
错误StringUtils.isNoneBlank(...)
。
我认为这是 lang3 版本的冲突
如何添加排除项commons.lang3
?