搜索Gradle插件

使用插件DSL

plugins {
  id("pub.ihub.plugin.ihub-groovy") version "1.6.6"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("pub.ihub.plugin:ihub-groovy:1.6.6")
  }
}

apply(plugin = "pub.ihub.plugin.ihub-groovy")

使用插件DSL

plugins {
  id "pub.ihub.plugin.ihub-groovy" version "1.6.6"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "pub.ihub.plugin:ihub-groovy:1.6.6"
  }
}

apply plugin: "pub.ihub.plugin.ihub-groovy"

学习如何应用插件到子项目中