搜索Gradle插件

使用插件DSL

plugins {
  id("com.redpillanalytics.gradle-confluent") version "1.3.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.redpillanalytics:gradle-confluent:1.3.10")
  }
}

apply(plugin = "com.redpillanalytics.gradle-confluent")

使用插件DSL

plugins {
  id "com.redpillanalytics.gradle-confluent" version "1.3.10"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.redpillanalytics:gradle-confluent:1.3.10"
  }
}

apply plugin: "com.redpillanalytics.gradle-confluent"

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