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 {
	}