com.intuit.hooks
Owner:
Jeremiah Zucker
Gradle wrapper of the Kotlin compiler companion to the Intuit hooks module
https://intuit.github.io/hooks/
Version 0.11.1
Created 03 November 2021.
Gradle wrapper of the Kotlin compiler companion to the Intuit hooks module
Using the plugins DSL:
plugins {
id("com.intuit.hooks") version "0.11.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.intuit.hooks:gradle-plugin:0.11.1")
}
}
apply(plugin = "com.intuit.hooks")
Using the plugins DSL:
plugins {
id "com.intuit.hooks" version "0.11.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.intuit.hooks:gradle-plugin:0.11.1"
}
}
apply plugin: "com.intuit.hooks"