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.3.0 (latest)
1.3.0
Created 13 November 2024.
Gradle Plugin making Cucumber tests compatible with Develocity's test acceleration features
Using the plugins DSL:
plugins {
id("com.gradle.cucumber.companion") version "1.3.0"
}
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.3.0")
}
}
apply(plugin = "com.gradle.cucumber.companion")
Using the plugins DSL:
plugins {
id "com.gradle.cucumber.companion" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.gradle.cucumber.companion:cucumber-companion-gradle-plugin:1.3.0"
}
}
apply plugin: "com.gradle.cucumber.companion"