com.anaplan.engineering.vdm-stub-generator
Owner:
Simon Fraser
A Gradle plugin to generate stub classes from the structure of a VDM specification
https://github.com/anaplan-engineering/azuki
Sources: https://github.com/anaplan-engineering/azuki
Version 0.4.0-alpha.19 (latest)
Created 02 April 2025.
A Gradle plugin to generate stub classes from the structure of a VDM specification
Add this plugin to your build using the plugins DSL:
plugins {
id("com.anaplan.engineering.vdm-stub-generator") version "0.4.0-alpha.19"
}
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.anaplan.engineering.vdm-stub-generator:com.anaplan.engineering.vdm-stub-generator.gradle.plugin:0.4.0-alpha.19") }
It can then be applied in the precompiled script plugin:plugins { id("com.anaplan.engineering.vdm-stub-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.anaplan.engineering.vdm-stub-generator:com.anaplan.engineering.vdm-stub-generator.gradle.plugin:0.4.0-alpha.19") } } apply(plugin = "com.anaplan.engineering.vdm-stub-generator")
- Applying plugins to all subprojects .