テストレポートの@CucumberOptions
でオプションformatを使用している場合、それを解決する方法としてフォーマットオプションが廃止されていることが示されています。
@CucumberOptions( monochrome = true, format = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })
formatをpluginに置き換えます
@CucumberOptions( monochrome = true,plugin = {"html:target/cucumber-html-report", "json:target/cucumber-json-report.json" })