plugins{}
块这种方式是Gradle
从2.1
以后的新用法
plugins{}
块这种方式引入的插件必须是来自Gradle
官方插件库
plugins{}
中指定的插件必须是 https://plugins.gradle.org里存在的插件
buildscript{}
块这种方式是Gradle
从2.0
以前的用法
如果使用buildscript {}
块指定第三方库作为Gradle插件的话
指定插件就需要使用apply plugin
了
他们是可以相互转化的
新版本的
1 | //Using the plugins DSL: |
老版本的
1 | //Using legacy plugin application |