com.anaplan.engineering.vdm
Owner:
Simon Fraser
A Gradle plugin to parse, type-check, test and publsih a VDM specification.
https://github.com/anaplan-engineering/vdm-gradle-plugin
Sources: https://github.com/anaplan-engineering/vdm-gradle-plugin
Version 3.0.2+4 (latest)
Created 19 June 2023.
A Gradle plugin to parse, type-check, test and publish a VDM specification.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.anaplan.engineering.vdm") version "3.0.2+4"
}
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:com.anaplan.engineering.vdm.gradle.plugin:3.0.2+4") }
It can then be applied in the precompiled script plugin:plugins { id("com.anaplan.engineering.vdm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.anaplan.engineering.vdm:com.anaplan.engineering.vdm.gradle.plugin:3.0.2+4") } } apply(plugin = "com.anaplan.engineering.vdm")
- Applying plugins to all subprojects .