it.unibo.collektive.collektivize
                  Owner:
                  
                    
                    Collektive
                  
                
This plugin generates a "fielded" version of any Kotlin library.
Sources: https://github.com/collektive/collektive.git
Version 27.2.0
Created 09 October 2025.
                This plugin generates a "fielded" version of any Kotlin library.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("it.unibo.collektive.collektivize") version "27.2.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("it.unibo.collektive.collektivize:it.unibo.collektive.collektivize.gradle.plugin:27.2.0") }It can then be applied in the precompiled script plugin:plugins { id("it.unibo.collektive.collektivize") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("it.unibo.collektive.collektivize:it.unibo.collektive.collektivize.gradle.plugin:27.2.0") } } apply(plugin = "it.unibo.collektive.collektivize")
- Applying plugins to all subprojects .