Search Gradle plugins

Version 1.0-SNAPSHOT

Created 19 October 2020.

Mesoform Multi-Cloud Configuration Format packaging tooling

Using the plugins DSL:

plugins {
  id("com.mesoform.mmcf") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mesoform.mmcf:mmcf-gradle-plugin:1.0-SNAPSHOT")
  }
}

apply(plugin = "com.mesoform.mmcf")

Using the plugins DSL:

plugins {
  id "com.mesoform.mmcf" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mesoform.mmcf:mmcf-gradle-plugin:1.0-SNAPSHOT"
  }
}

apply plugin: "com.mesoform.mmcf"

Learn how to apply plugins to subprojects