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.4.5

Created 16 November 2016.

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

Using the plugins DSL:

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

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.4.5")
  }
}

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

Using the plugins DSL:

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

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.4.5"
  }
}

apply plugin: "com.thoughtworks.gauge"

Learn how to apply plugins to subprojects