Search Gradle plugins

Version 3.0.2+2

Created 08 April 2022.

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+2"
}

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+2")
  }
}

apply(plugin = "com.anaplan.engineering.vdm")

Using the plugins DSL:

plugins {
  id "com.anaplan.engineering.vdm" version "3.0.2+2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.anaplan.engineering:vdm-gradle-plugin:3.0.2+2"
  }
}

apply plugin: "com.anaplan.engineering.vdm"

Learn how to apply plugins to subprojects