Updating Gherkin version #1
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I had to update gherkin version to 2.4.2 in order to compile core, was getting this compilation errors:
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/junit/ScenarioRunner.java:[69,19] cucumber.junit.ScenarioRunner.JUnitReporter is not abstract and does not override abstract method nextRow() in gherkin.formatter.Reporter
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/junit/ScenarioRunner.java:[91,26] cannot find symbol
symbol : method getError()
location: class gherkin.formatter.model.Result
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/junit/ScenarioRunner.java:[92,54] cannot find symbol
symbol : method getError()
location: class gherkin.formatter.model.Result
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/runtime/StepDefinitionMatch.java:[28,63] cannot find symbol
symbol : method getStackTraceElement(java.lang.String)
location: class gherkin.formatter.model.Step
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/runtime/StepDefinitionMatch.java:[30,42] cannot find symbol
symbol : method getStackTraceElement(java.lang.String)
location: class gherkin.formatter.model.Step
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/runtime/World.java:[42,50] cannot find symbol
symbol : variable PASSED
location: class gherkin.formatter.model.Result
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/runtime/World.java:[42,66] cannot find symbol
symbol : variable FAILED
location: class gherkin.formatter.model.Result
/home/cedric/src/cucumber-jvm/core/src/main/java/cucumber/runtime/World.java:[43,32] cannot find symbol
symbol : constructor Result(java.lang.String,long,java.lang.Throwable)
location: class gherkin.formatter.model.Result
Next step for me will be to implement base Transformers in order to have calculator feature working...