我的build.gradle
文件有:
apply from: "${rootDir}/dependencies.gradle"
和build.gradle
可以:
import com.example.CustomPlugin
但是从dependencies.gradle
内部做同样的事情:
启动失败: script' dependencies.gradle':7:无法解析类com.example.PlatformJava8FixPlugin
需要从dependencies.gradle
导入课程的内容是什么?
答案 0 :(得分:0)
com.example.PlatformJava8FixPlugin必须位于构建的类路径中。因此,如果顶级构建文件具有一些特殊的构建脚本依赖性,例如:
buildscript {
dependencies {
classpath("com.example:gradle-plugin:+")
}
}
你的 dependencies.gradle 也需要它。