Search Gradle plugins

org.gauge

Owner: getgauge

Gradle plugin for Gauge, the open source test automation tool developed by ThoughtWorks.

https://github.com/getgauge/gauge-gradle-plugin

Sources: https://github.com/getgauge/gauge-gradle-plugin.git

Version 1.8.1

Created 16 April 2020.

Gradle plugin for Gauge, the open source test automation tool developed by ThoughtWorks.

Using the plugins DSL:

plugins {
  id("org.gauge") version "1.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.gauge.gradle:gauge-gradle-plugin:1.8.1")
  }
}

apply(plugin = "org.gauge")

Using the plugins DSL:

plugins {
  id "org.gauge" version "1.8.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.gauge.gradle:gauge-gradle-plugin:1.8.1"
  }
}

apply plugin: "org.gauge"

Learn how to apply plugins to subprojects