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.13.0

Created 09 July 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.intuit.hooks"

Learn how to apply plugins to subprojects