Search Gradle plugins

com.github.spacialcircumstances.gradle-cucumber-reporting

Owner: Felix

A gradle plugin to generate pretty HTML reports for Cucumber from json report files. Uses https://github.com/damianszczepanik/cucumber-reporting for generating the reports.

https://github.com/SpacialCircumstances/gradle-cucumber-reporting

Sources: https://github.com/SpacialCircumstances/gradle-cucumber-reporting

Version 0.1.23

0.1.23

Created 07 February 2021.

A gradle plugin to generate pretty HTML reports for Cucumber from json report files. Uses https://github.com/damianszczepanik/cucumber-reporting for generating the reports.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.spacialcircumstances.gradle-cucumber-reporting") version "0.1.23"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.spacialcircumstances:gradle-cucumber-reporting:0.1.23")
      }
    }
    
    apply(plugin = "com.github.spacialcircumstances.gradle-cucumber-reporting")
  • Applying plugins to all subprojects .