Search Gradle plugins

Version 0.1.4 (latest)

Created 11 April 2022.

Gradle plugin to run postman

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"

Learn how to apply plugins to subprojects