--
Posting rules: http://cukes.info/posting-rules.html
---
You received this message because you are subscribed to the Google Groups "Cukes" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cukes+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
On Monday, 17 November 2014 at 16:26, Robert wrote:
I recently updated to Cucumber 1.2.0 and I'm now facing the following warning messageWARNING: Cucumber-JVM's --format option is deprecated. Please use --plugin instead.Here is the class containing the @CucumberOptionsimport cucumber.api.CucumberOptionsimport cucumber.api.junit.Cucumberimport org.junit.runner.RunWith@RunWith(Cucumber.class)@CucumberOptions(features = ["classpath:features/"], monochrome = true, format = ["pretty", "json:target/cucumber.json"]// , tags = ["~@manual"], glue = ["src/test/groovy/com/xyz/studio/qa/steps"])class RunDnoteITCase {}What would be the equivalent of the above, but using the plugin option?replace format with pluginAslak