Gradle v3.4.1
当我运行依赖树时,我有以下内容
+--- project :zift-core
| ....
| +--- com.hazelcast:hazelcast:4.0.1 -> 3.6.8
我什至在我的build.gradle文件中有这个
dependencies {
compile("com.hazelcast:hazelcast:4.0.1") {
force = true
}
}
如何找出将版本降级到 3.6.8 的工件?或者我该如何强制hazelcast:4.0.1?
谢谢