com.github.michaelruocco.gradle-postman-runner
Owner:
Michael Ruocco
Gradle plugin to run postman
https://github.com/michaelruocco/gradle-postman-runner
Sources: https://github.com/michaelruocco/gradle-postman-runner.git
Using the plugins DSL:
plugins {
id("com.github.michaelruocco.gradle-postman-runner") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.michaelruocco:gradle-postman-runner:0.1.4")
}
}
apply(plugin = "com.github.michaelruocco.gradle-postman-runner")
Using the plugins DSL:
plugins {
id "com.github.michaelruocco.gradle-postman-runner" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.michaelruocco:gradle-postman-runner:0.1.4"
}
}
apply plugin: "com.github.michaelruocco.gradle-postman-runner"