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

Created 11 May 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.11"
}

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.github.spacialcircumstances.gradle-cucumber-reporting:com.github.spacialcircumstances.gradle-cucumber-reporting.gradle.plugin:0.0.11")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.spacialcircumstances.gradle-cucumber-reporting")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.spacialcircumstances.gradle-cucumber-reporting:com.github.spacialcircumstances.gradle-cucumber-reporting.gradle.plugin:0.0.11")
      }
    }
    
    apply(plugin = "com.github.spacialcircumstances.gradle-cucumber-reporting")
  • Applying plugins to all subprojects .