搜索Gradle插件

使用 插件DSL

plugins {
  id("com.techshroom.incise-blue") version "0.5.7"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.techshroom:incise-blue:0.5.7")
  }
}

apply(plugin = "com.techshroom.incise-blue")

使用 插件DSL

plugins {
  id "com.techshroom.incise-blue" version "0.5.7"
}

使用 旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.techshroom:incise-blue:0.5.7"
  }
}

apply plugin: "com.techshroom.incise-blue"

学习如何将插件应用于子项目