org.partiql.pig.pig-gradle-plugin
                  Owner:
                  
                    
                    PartiQL
                  
                
The PIG gradle plugin exposes a Gradle task to generate sources from a PIG type universe
https://github.com/partiql/partiql-ir-generator/wiki
Sources: https://github.com/partiql/partiql-ir-generator
Version 0.6.3 (latest)
Created 22 April 2024.
                The PIG gradle plugin exposes a Gradle task to generate sources from a PIG type universe
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.partiql.pig.pig-gradle-plugin") version "0.6.3"
}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("org.partiql.pig.pig-gradle-plugin:org.partiql.pig.pig-gradle-plugin.gradle.plugin:0.6.3") }It can then be applied in the precompiled script plugin:plugins { id("org.partiql.pig.pig-gradle-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.partiql.pig.pig-gradle-plugin:org.partiql.pig.pig-gradle-plugin.gradle.plugin:0.6.3") } } apply(plugin = "org.partiql.pig.pig-gradle-plugin")
- Applying plugins to all subprojects .