Search Gradle plugins

Version 1.0.6 (latest)

Created 28 June 2021.

An opinionated plugin to simplify the life of MPS developers

Using the plugins DSL:

plugins {
  id("com.strumenta.mpswizard") version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.strumenta:mpswizard-gradle-plugin:1.0.6")
  }
}

apply(plugin = "com.strumenta.mpswizard")

Using the plugins DSL:

plugins {
  id "com.strumenta.mpswizard" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.strumenta:mpswizard-gradle-plugin:1.0.6"
  }
}

apply plugin: "com.strumenta.mpswizard"

Learn how to apply plugins to subprojects