gradle-cucumber-plugin
gradle-cucumber-plugin copied to clipboard
Support Gradle 5.X
@ronh73 and @gregmunt in PR #74 pointed out an incompatibility with Gradle 5.X. I've subsequently found another:
CucumberJvmOptions that accepts a FileResolver is attempting to call Gradle's DefaultForkOptions(FileResolver) which was removed on 01/31/19 with this changeset. Because of this, when I build using Gradle and this project's Gradle plugin, I receive the following exception:
Could not find matching constructor for: org.gradle.process.internal.DefaultForkOptions(org.gradle.api.internal.file.BaseDirFileResolver)
There are a couple of problems here:
- It isn't clear how to fix the issue. More research into Gradle's new APIs is required.
- Any solution would be backwards incompatible prior to Gradle 5.3.0.RC1
:(