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.25 (latest)
0.1.25
Created 05 October 2022.
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.
Using the plugins DSL:
plugins {
id("com.github.spacialcircumstances.gradle-cucumber-reporting") version "0.1.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.spacialcircumstances:gradle-cucumber-reporting:0.1.25")
}
}
apply(plugin = "com.github.spacialcircumstances.gradle-cucumber-reporting")
Using the plugins DSL:
plugins {
id "com.github.spacialcircumstances.gradle-cucumber-reporting" version "0.1.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.spacialcircumstances:gradle-cucumber-reporting:0.1.25"
}
}
apply plugin: "com.github.spacialcircumstances.gradle-cucumber-reporting"