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