搜索Gradle插件

使用插件DSL

plugins {
  id("com.brambolt.gradle.pathing") version "2022.05.01-7057"
}

使用旧式插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.brambolt.gradle:brambolt-gradle-pathing:2022.05.01-7057")
  }
}

apply(plugin = "com.brambolt.gradle.pathing")

使用插件DSL

plugins {
  id "com.brambolt.gradle.pathing" version "2022.05.01-7057"
}

使用旧式插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.brambolt.gradle:brambolt-gradle-pathing:2022.05.01-7057"
  }
}

apply plugin: "com.brambolt.gradle.pathing"

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