搜索Gradle插件

使用 插件 DSL

plugins {
  id("com.zegreatrob.testmints.action-mint") version "12.1.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.zegreatrob.testmints:action-mint-plugin:12.1.1")
  }
}

apply(plugin = "com.zegreatrob.testmints.action-mint")

使用 插件 DSL

plugins {
  id "com.zegreatrob.testmints.action-mint" version "12.1.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.zegreatrob.testmints:action-mint-plugin:12.1.1"
  }
}

apply plugin: "com.zegreatrob.testmints.action-mint"

了解如何将插件应用于子项目