no.item.xp.codegen
                  Owner:
                  
                    
                    Tom Arild Jakobsen
                  
                
Plugin for generating code based on XMLs in Enonic XP 7
Sources: https://github.com/ItemConsulting/xp-codegen-plugin
Version 2.7.0 (latest)
Created 28 March 2025.
                Plugin for generating code based on XMLs in Enonic XP 7
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("no.item.xp.codegen") version "2.7.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("no.item.xp.codegen:no.item.xp.codegen.gradle.plugin:2.7.0") }It can then be applied in the precompiled script plugin:plugins { id("no.item.xp.codegen") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("no.item.xp.codegen:no.item.xp.codegen.gradle.plugin:2.7.0") } } apply(plugin = "no.item.xp.codegen") - Applying plugins to all subprojects .