Gradle不断收到“无法为根项目获得未知属性”错误

时间:2019-02-07 22:54:47

标签: gradle build.gradle

作为新手,我正在尝试使构建步骤依赖于自定义任务。

我的build.gradle包含以下代码:

repositories {
  jcenter()
}

apply plugin: 'base'

defaultTasks 'build'
build.dependsOn compileAll

task compileAll {
  doLast {
    println "hello" 
  }
}

如果我删除build.dependsOn compileAll行,则可以正常工作。我认为我做错了事,但不确定。

1 个答案:

答案 0 :(得分:1)

问题是您在实际声明build任务之前在compileAllcompileAll之间创建了依赖关系。因此Gradle不了解此任务,并生成错误Could not get property...。 请记住,构建脚本实际上是真正的脚本,顺序说明/块很重要。

这将起作用:

// first declare "compileAll" task
task compileAll {
    doLast {
        println "hello"
    }
}
// then you can reference this compileAll task declare above
build.dependsOn compileAll