diff --git a/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help.html b/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help.html new file mode 100644 index 0000000..5c1eaaa --- /dev/null +++ b/src/main/resources/net/masterthought/jenkins/CucumberReportPublisher/help.html @@ -0,0 +1,16 @@ +

Publishes cucumber-jvm html results

+

This plugin requires that you use cucumber-jvm and run using JUnit as well as setting cucumber to generate a json report (you must give the json file the suffix .json). The plugin + uses the json report to produce html reports that are available from jenkins on the build page after a build has run. +

+
+	package net.masterthought.example;
+
+	import cucumber.junit.Cucumber;
+	import org.junit.runner.RunWith;
+
+	@RunWith(Cucumber.class)
+	@Cucumber.Options(format = {"pretty", "html:target/cucumber", "json:target/cucumber.json"})
+	public class ATMTest {
+	}
+	
+