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)
3.0.2+4
Created 19 June 2023.
A Gradle plugin to parse, type-check, test and publish a VDM specification.
Using the plugins DSL:
plugins {
id("com.anaplan.engineering.vdm") version "3.0.2+4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.anaplan.engineering:vdm-gradle-plugin:3.0.2+4")
}
}
apply(plugin = "com.anaplan.engineering.vdm")
Using the plugins DSL:
plugins {
id "com.anaplan.engineering.vdm" version "3.0.2+4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.anaplan.engineering:vdm-gradle-plugin:3.0.2+4"
}
}
apply plugin: "com.anaplan.engineering.vdm"