com.patdouble.cucumber-jvm
Owner: Patrick Double
The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a Gradle build.
https://github.com/double16/gradle-cucumber-jvm-plugin
Sources: https://github.com/double16/gradle-cucumber-jvm-plugin
Version 0.20 (latest)
Created 01 April 2021.
The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a Gradle build.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.patdouble.cucumber-jvm") version "0.20"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.patdouble.cucumber-jvm:com.patdouble.cucumber-jvm.gradle.plugin:0.20") }
It can then be applied in the precompiled script plugin:plugins { id("com.patdouble.cucumber-jvm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.patdouble.cucumber-jvm:com.patdouble.cucumber-jvm.gradle.plugin:0.20") } } apply(plugin = "com.patdouble.cucumber-jvm")
- Applying plugins to all subprojects .