Search Gradle plugins

com.intuit.hooks

Gradle wrapper of the Kotlin compiler companion to the Intuit hooks module

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

Sources: https://github.com/intuit/hooks

Version 0.15.0 (latest)

Created 02 June 2023.

Gradle wrapper of the Kotlin symbol processor companion to the Intuit hooks module

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.intuit.hooks:com.intuit.hooks.gradle.plugin:0.15.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.intuit.hooks")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.intuit.hooks:com.intuit.hooks.gradle.plugin:0.15.0")
      }
    }
    
    apply(plugin = "com.intuit.hooks")
  • Applying plugins to all subprojects .