com.intuit.hooks
                  Owner:
                  
                    
                    Jeremiah Zucker
                  
                
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.9.0
Created 17 March 2021.
                Gradle wrapper of the Kotlin compiler companion to the Intuit hooks module
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.intuit.hooks") version "0.9.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.9.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.9.0") } } apply(plugin = "com.intuit.hooks")
- Applying plugins to all subprojects .