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