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

Created 07 October 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.intuit.hooks"

Learn how to apply plugins to subprojects