我在build.gradle中配置受害者插件时遇到错误。 Gradle版本是2.0。
buildscript {
repositories {
mavenRepo url: "http://xxxxx.xxx.xxx.xxx/content/groups/public/"
}
dependencies {
classpath 'com.xxxx.xxx.crm:gradle-plugins:1.3.5'
}
}
apply plugin: 'victims'
victims {
fingerprint = 'fatal'
updates = 'auto'
}
错误是:
找不到配置容器中参数[victim]的方法maybeCreate()。
相同的配置在我的另一个项目中没有那个方法(maybeCreate())声明。但我不确定,我在这里缺少什么? 有人可以告诉我吗?
答案 0 :(得分:0)
我已经解决了这个问题。 问题出在旧gradle版本上。我已经在gradle-wrapper.properties中的distributionUrl属性中将gradle版本从1.3更改为1.10解决了这个问题。
distributionUrl=http://xxxx.xxx.xom/gradle/gradle-1.10-bin.zip
无论如何,感谢Al Jacinto的帮助。