搜索Gradle插件

com.intuit.hooks

所有者: Jeremiah Zucker

Kotlin编译器伴侣的Gradle包装器,用于Intuit钩模块

https://intuit.github.io/hooks/

源代码: https://github.com/intuit/hooks

版本 0.15.0(最新版)

0.15.0

创建于2023年6月2日。

Kotlin符号处理器伴侣的Gradle包装器,用于Intuit钩模块

使用插件DSL

plugins {
  id("com.intuit.hooks") version "0.15.0"
}

使用过时插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.intuit.hooks:gradle-plugin:0.15.0")
  }
}

apply(plugin = "com.intuit.hooks")

使用插件DSL

plugins {
  id "com.intuit.hooks" version "0.15.0"
}

使用过时插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.intuit.hooks:gradle-plugin:0.15.0"
  }
}

apply plugin: "com.intuit.hooks"

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