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.6.3 (latest)
Created 05 December 2024.
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.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("no.item.xp.codegen:no.item.xp.codegen.gradle.plugin:2.6.3") }
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.6.3") } } apply(plugin = "no.item.xp.codegen")
- Applying plugins to all subprojects .