我有一些Gradle脚本可以通过apply from: 'my-build.gradle'
应用。如果我在外部构建文件my-build.gradle
中使用新插件DSL,则会因以下错误而失败:
> startup failed:
Only Project build scripts can contain plugins {} blocks
See http://gradle.org/docs/2.3/userguide/plugins.html#sec:plugins_block
for information on the plugins {} block
查看错误消息中指出的文档并未显示限制的原因。为什么插件声明的位置有限制?
文件供以下参考。
my-build.gradle
档案:
plugins {
id "net.saliman.cobertura" version "2.2.5"
}
build.gradle
档案:
apply from: "my-build.gradle"
// Other stuff
答案 0 :(得分:6)
这是您在外部Gradle文件中使用插件的方法,例如my-build.gradle
:
buildscript {
repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "org.sonarqube.gradle:gradle-sonarqube-plugin:1.1"
classpath "net.saliman:gradle-cobertura-plugin:2.2.8"
}
}
// Because this is a helper script that's sourced in from a build.gradle, we can't use the ID of external plugins
// We either use the full class name of the plugin without quotes or an init script: http://www.gradle.org/docs/current/userguide/init_scripts.html
apply plugin: org.sonarqube.gradle.SonarQubePlugin
apply plugin: net.saliman.gradle.plugin.cobertura.CoberturaPlugin
// rest of my-build.gradle omitted
通常,要获取插件的完全限定类名,您必须查看其.jar
文件。
至于技术原因为什么你不能在外部文件中使用plugins {}
块,我不知道。可能需要对following:
[...]插件[需要]以Gradle可以轻松指定的方式指定 并在执行其余构建之前快速提取[them] 脚本。它还要求使用插件的定义 有些静止。
但是rejoice:
Gradle的未来版本将删除此限制。