commons-lang3
(バージョン3.1)のorg.apache.commons.lang3.BooleanUtils
を使用しています。私はコンパイルするためにJava 1.7.0_55を使用MavenとApacheのutilsであいまいなコンパイルエラー
[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
:私はコード
maven-compiler-plugin
(バージョン3.3)を使用して
BooleanUtils.xor(true, true);
の次の行をコンパイルしようとする 、私はコンパイルエラーメッセージを取得しています。
どうすればこの問題を解決できますか?
これは動作しますが、私にとっては本当に悪いコードのように見えます:私はこれがapcahe-commons-lengs3 – Deplake