├── .README ├── advanced-publish-box.png ├── advanced-tab.png ├── advanced_options.png ├── configure_jvm.png ├── configure_ruby.png ├── install.png ├── installed.png ├── manage_jenkins.png ├── manage_plugins.png ├── publish-box.png ├── report-link.png ├── restart.png └── upload.png ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ └── jenkins-security-scan.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── Jenkinsfile ├── LICENCE ├── README.md ├── pom.xml └── src └── main ├── java └── net │ └── masterthought │ └── jenkins │ ├── CucumberReportBaseAction.java │ ├── CucumberReportDescriptor.java │ ├── CucumberReportProjectAction.java │ ├── CucumberReportPublisher.java │ ├── SafeArchiveServingAction.java │ └── SafeArchiveServingRunAction.java ├── resources ├── index.jelly ├── net │ └── masterthought │ │ └── jenkins │ │ ├── CucumberReportPublisher │ │ ├── Classification │ │ │ ├── config.jelly │ │ │ ├── config.properties │ │ │ ├── help-key.html │ │ │ ├── help-value.html │ │ │ └── help.html │ │ ├── config.jelly │ │ ├── config.properties │ │ ├── help-buildStatus.html │ │ ├── help-classifications.html │ │ ├── help-classificationsFilePattern.html │ │ ├── help-customCssFiles.html │ │ ├── help-customJsFiles.html │ │ ├── help-failedAsNotFailingStatus.html │ │ ├── help-failedFeaturesNumber.html │ │ ├── help-failedFeaturesPercentage.html │ │ ├── help-failedScenariosNumber.html │ │ ├── help-failedScenariosPercentage.html │ │ ├── help-failedStepsNumber.html │ │ ├── help-failedStepsPercentage.html │ │ ├── help-fileExcludePattern.html │ │ ├── help-fileIncludePattern.html │ │ ├── help-jsonReportDirectory.html │ │ ├── help-mergeFeaturesById.html │ │ ├── help-mergeFeaturesWithRetest.html │ │ ├── help-pendingAsNotFailingStatus.html │ │ ├── help-pendingStepsNumber.html │ │ ├── help-pendingStepsPercentage.html │ │ ├── help-reducingMethods.html │ │ ├── help-skipEmptyJSONFiles.html │ │ ├── help-skippedAsNotFailingStatus.html │ │ ├── help-skippedStepsNumber.html │ │ ├── help-skippedStepsPercentage.html │ │ ├── help-sortingMethod.html │ │ ├── help-stopBuildOnFailedReport.html │ │ ├── help-trendsLimit.html │ │ ├── help-undefinedAsNotFailingStatus.html │ │ ├── help-undefinedStepsNumber.html │ │ ├── help-undefinedStepsPercentage.html │ │ └── help.html │ │ └── Messages.properties └── plugin.properties └── webapp └── icon.png /.README/advanced-publish-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/advanced-publish-box.png -------------------------------------------------------------------------------- /.README/advanced-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/advanced-tab.png -------------------------------------------------------------------------------- /.README/advanced_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/advanced_options.png -------------------------------------------------------------------------------- /.README/configure_jvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/configure_jvm.png -------------------------------------------------------------------------------- /.README/configure_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/configure_ruby.png -------------------------------------------------------------------------------- /.README/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/install.png -------------------------------------------------------------------------------- /.README/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/installed.png -------------------------------------------------------------------------------- /.README/manage_jenkins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/manage_jenkins.png -------------------------------------------------------------------------------- /.README/manage_plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/manage_plugins.png -------------------------------------------------------------------------------- /.README/publish-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/publish-box.png -------------------------------------------------------------------------------- /.README/report-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/report-link.png -------------------------------------------------------------------------------- /.README/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/restart.png -------------------------------------------------------------------------------- /.README/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.README/upload.png -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jenkinsci/cucumber-reports-plugin-developers 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/jenkins-security-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.github/workflows/jenkins-security-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | .idea 3 | .classpath 4 | *.iml 5 | .project 6 | .settings/ 7 | -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/CucumberReportBaseAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/CucumberReportBaseAction.java -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/CucumberReportDescriptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/CucumberReportDescriptor.java -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/CucumberReportProjectAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/CucumberReportProjectAction.java -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/CucumberReportPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/CucumberReportPublisher.java -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/SafeArchiveServingAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/SafeArchiveServingAction.java -------------------------------------------------------------------------------- /src/main/java/net/masterthought/jenkins/SafeArchiveServingRunAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/java/net/masterthought/jenkins/SafeArchiveServingRunAction.java -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/config.jelly -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/config.properties -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/help-key.html: -------------------------------------------------------------------------------- 1 |
Name of the classification.
-------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/help-value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/help-value.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/Classification/help.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/config.jelly -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/config.properties -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-buildStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-buildStatus.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-classifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-classifications.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-classificationsFilePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-classificationsFilePattern.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-customCssFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-customCssFiles.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-customJsFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-customJsFiles.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedAsNotFailingStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedAsNotFailingStatus.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedFeaturesNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedFeaturesNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedFeaturesPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedFeaturesPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedScenariosNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedScenariosNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedScenariosPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedScenariosPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedStepsNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedStepsNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedStepsPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-failedStepsPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-fileExcludePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-fileExcludePattern.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-fileIncludePattern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-fileIncludePattern.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-jsonReportDirectory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-jsonReportDirectory.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-mergeFeaturesById.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-mergeFeaturesById.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-mergeFeaturesWithRetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-mergeFeaturesWithRetest.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingAsNotFailingStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingAsNotFailingStatus.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingStepsNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingStepsNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingStepsPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-pendingStepsPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-reducingMethods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-reducingMethods.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skipEmptyJSONFiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skipEmptyJSONFiles.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedAsNotFailingStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedAsNotFailingStatus.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedStepsNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedStepsNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedStepsPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-skippedStepsPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-sortingMethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-sortingMethod.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-stopBuildOnFailedReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-stopBuildOnFailedReport.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-trendsLimit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-trendsLimit.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedAsNotFailingStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedAsNotFailingStatus.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedStepsNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedStepsNumber.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedStepsPercentage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help-undefinedStepsPercentage.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help.html -------------------------------------------------------------------------------- /src/main/resources/net/masterthought/jenkins/Messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/net/masterthought/jenkins/Messages.properties -------------------------------------------------------------------------------- /src/main/resources/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/resources/plugin.properties -------------------------------------------------------------------------------- /src/main/webapp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/cucumber-reports-plugin/HEAD/src/main/webapp/icon.png --------------------------------------------------------------------------------