如何从应用的Gradle文件导入类?

时间:2015-04-17 20:22:18

标签: gradle

我的build.gradle文件有:

apply from: "${rootDir}/dependencies.gradle"

build.gradle可以:

import com.example.CustomPlugin

但是从dependencies.gradle内部做同样的事情:

  

启动失败:     script' dependencies.gradle':7:无法解析类com.example.PlatformJava8FixPlugin

需要从dependencies.gradle导入课程的内容是什么?

1 个答案:

答案 0 :(得分:0)

com.example.PlatformJava8FixPlugin必须位于构建的类路径中。因此,如果顶级构建文件具有一些特殊的构建脚本依赖性,例如:

 buildscript {
     dependencies {
        classpath("com.example:gradle-plugin:+")
     }
 }

你的 dependencies.gradle 也需要它。