Search Gradle plugins

Version 0.0.8.3 (latest)

Created 31 October 2021.

A Karate-gradle runner

Using the plugins DSL:

plugins {
  id("com.github.prspal.karate-runner") version "0.0.8.3"
}

Using legacy plugin application:

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

apply(plugin = "com.github.prspal.karate-runner")

Using the plugins DSL:

plugins {
  id "com.github.prspal.karate-runner" version "0.0.8.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.prspal:gradle-karate-runner:0.0.8.3"
  }
}

apply plugin: "com.github.prspal.karate-runner"

Learn how to apply plugins to subprojects