org.ndrwdn.mountebank
Owner: Andrew Dean
A Gradle plugin to manage Mountebank
https://github.com/ndrwdn/mountebank-gradle
Sources: https://github.com/ndrwdn/mountebank-gradle
Using the plugins DSL:
plugins {
id("org.ndrwdn.mountebank") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.ndrwdn:mountebank:0.0.1")
}
}
apply(plugin = "org.ndrwdn.mountebank")
Using the plugins DSL:
plugins {
id "org.ndrwdn.mountebank" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.ndrwdn:mountebank:0.0.1"
}
}
apply plugin: "org.ndrwdn.mountebank"