搜索Gradle插件

使用插件DSL

plugins {
  id("com.github.turansky.yfiles") version "6.21.0"
}

使用旧式插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.turansky.yfiles:gradle-plugin:6.21.0")
  }
}

apply(plugin = "com.github.turansky.yfiles")

使用插件DSL

plugins {
  id "com.github.turansky.yfiles" version "6.21.0"
}

使用旧式插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.turansky.yfiles:gradle-plugin:6.21.0"
  }
}

apply plugin: "com.github.turansky.yfiles"

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