Search Gradle plugins

com.gradle.cucumber.companion

Owner: Gradle

Gradle Plugin making Cucumber tests compatible with Develocity's test acceleration features

https://github.com/gradle/cucumber-companion/

Sources: https://github.com/gradle/cucumber-companion/

Version 1.0.1 (latest)

Created 22 November 2023.

Gradle Plugin making Cucumber tests compatible with Develocity's test acceleration features

Using the plugins DSL:

plugins {
  id("com.gradle.cucumber.companion") version "1.0.1"
}

Using legacy plugin application:

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

apply(plugin = "com.gradle.cucumber.companion")

Using the plugins DSL:

plugins {
  id "com.gradle.cucumber.companion" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.gradle.cucumber.companion:cucumber-companion-gradle-plugin:1.0.1"
  }
}

apply plugin: "com.gradle.cucumber.companion"

Learn how to apply plugins to subprojects