Gradle错误:无法在配置容器上找到参数[victim]的maybeCreate()方法

时间:2015-04-29 02:11:04

标签: gradle build.gradle

我在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())声明。但我不确定,我在这里缺少什么? 有人可以告诉我吗?

1 个答案:

答案 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的帮助。