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 2.1.0 (latest)

Created 02 April 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply(plugin = "org.gauge")

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.gauge"

Learn how to apply plugins to subprojects