Search Gradle plugins

com.thoughtworks.gauge

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

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

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

Version 1.7.2 (latest)

Created 21 April 2018.

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

Using the plugins DSL:

plugins {
  id("com.thoughtworks.gauge") version "1.7.2"
}

Using legacy plugin application:

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

apply(plugin = "com.thoughtworks.gauge")

Using the plugins DSL:

plugins {
  id "com.thoughtworks.gauge" version "1.7.2"
}

Using legacy plugin application:

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

apply plugin: "com.thoughtworks.gauge"

Learn how to apply plugins to subprojects