我org.apache.commons.lang3.BooleanUtils
在commons-lang3
(3.1版)中使用。当我尝试编译下一行代码时
BooleanUtils.xor(true, true);
使用maven-compiler-plugin
(版本 3.3),我收到编译失败消息:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on project exchange: Compilation failure
[ERROR] MyClass.java:[33,34] reference to xor is ambiguous, both method xor(boolean...) in org.apache.commons.lang3.BooleanUtils and method xor(java.lang.Boolean...) in org.apache.commons.lang3.BooleanUtils match
我使用 Java 1.7.0_55 进行编译。
我该如何解决这个问题?