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.15 (latest)
0.4.0-alpha.15
Created 23 April 2024.
A Gradle plugin to generate stub classes from the structure of a VDM specification
Using the plugins DSL:
plugins {
id("com.anaplan.engineering.vdm-stub-generator") version "0.4.0-alpha.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.anaplan.engineering:vdm-stub-generator:0.4.0-alpha.15")
}
}
apply(plugin = "com.anaplan.engineering.vdm-stub-generator")
Using the plugins DSL:
plugins {
id "com.anaplan.engineering.vdm-stub-generator" version "0.4.0-alpha.15"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.anaplan.engineering:vdm-stub-generator:0.4.0-alpha.15"
}
}
apply plugin: "com.anaplan.engineering.vdm-stub-generator"