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.0.3

0.0.3

Created 18 January 2018.

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.0.3"
}

See also:

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