Search Gradle plugins

Version 0.1.1

Created 14 January 2020.

Gradle plugin to run postman

Using the plugins DSL:

plugins {
  id("com.github.michaelruocco.gradle-postman-runner") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.michaelruocco:gradle-postman-runner:0.1.1")
  }
}

apply(plugin = "com.github.michaelruocco.gradle-postman-runner")

Using the plugins DSL:

plugins {
  id "com.github.michaelruocco.gradle-postman-runner" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.michaelruocco:gradle-postman-runner:0.1.1"
  }
}

apply plugin: "com.github.michaelruocco.gradle-postman-runner"

Learn how to apply plugins to subprojects