Search Gradle plugins

Version 0.0.3

0.0.3

Created 09 March 2017.

A Gradle plugin to manage Mountebank

Using the plugins DSL:

plugins {
  id("org.ndrwdn.mountebank") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.ndrwdn:mountebank:0.0.3")
  }
}

apply(plugin = "org.ndrwdn.mountebank")

Using the plugins DSL:

plugins {
  id "org.ndrwdn.mountebank" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.ndrwdn:mountebank:0.0.3"
  }
}

apply plugin: "org.ndrwdn.mountebank"

Learn how to apply plugins to subprojects