Gradle插件DSL:声明位置的限制

时间:2015-02-23 12:57:38

标签: gradle build.gradle

我有一些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

查看错误消息中指出的文档并未显示限制的原因。为什么插件声明的位置有限制?

文件供以下参考。

  1. my-build.gradle档案:

    plugins {
        id "net.saliman.cobertura" version "2.2.5"
    }
    
  2. build.gradle档案:

    apply from: "my-build.gradle"
    
    // Other stuff
    

1 个答案:

答案 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

上面我已激活SonarQubeCobertura的插件。

通常,要获取插件的完全限定类名,您必须查看其.jar文件。

至于技术原因为什么你不能在外部文件中使用plugins {}块,我不知道。可能需要对following

执行某些操作
  

[...]插件[需要]以Gradle可以轻松指定的方式指定   并在执行其余构建之前快速提取[them]   脚本。它还要求使用插件的定义   有些静止。

但是rejoice

  

Gradle的未来版本将删除此限制。