com.commercehub.cucumber-jvm
Owner: Jay St Gelais
The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a gradle build.
https://github.com/commercehub-oss/gradle-cucumber-jvm-plugin
Sources: https://github.com/commercehub-oss/gradle-cucumber-jvm-plugin
Version 0.14 (latest)
Created 10 April 2018.
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.commercehub.cucumber-jvm") version "0.14"
}
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.commercehub.cucumber-jvm:com.commercehub.cucumber-jvm.gradle.plugin:0.14") }
It can then be applied in the precompiled script plugin:plugins { id("com.commercehub.cucumber-jvm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.commercehub.cucumber-jvm:com.commercehub.cucumber-jvm.gradle.plugin:0.14") } } apply(plugin = "com.commercehub.cucumber-jvm")
- Applying plugins to all subprojects .