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