gradle-cucumber-plugin
gradle-cucumber-plugin copied to clipboard
Plugin to support cucumber-jvm in Gradle builds
Referenced from #27 https://github.com/samueltbrown/gradle-cucumber-plugin/issues/27#issuecomment-294860608 as it is closed. >Hi @viphe I am also having the similar problem when I used gradle cucumber it complained steps are undefined. I am using...
Getting this warning when using the plugin with gradle 4.x > Gradle now uses separate output directories for each JVM language, but this build assumes a single directory for all...
Hello. This plugin has not worked since Gradle version 5. At the time of writing, the latest version is 6.5! I thought that it would be a good idea to...
Hi, it would be great to have a possiblility of running cucumber tests in parallel, i was looking at https://github.com/camiloribeiro/cucumber-gradle-parallel/blob/master/build.gradle and it's possible but i don't see a way to...
Hi. I have the path: src/test/resources/feature/... which has *.feature files which are the test files and I have their step definitions in: src/test/java/feature/... Before using the cucumber plugin, I could...
When I use a second ANDed tag in the tags parameter as in: ``` tags = ['@DUC', '@development'] ``` an exception is thrown. A single tag works fine. Exception: -...
How do I Create a new task of type CucumberTask? I tried the following but when I try to run I get "Cannot invoke method copyTo() on null object" ```...
On windows 10 the following error is thrown during running cucumber gradle task: ``` :cucumber FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task...
The call to "sourceSet.output.classesDir" is deprecated in Gradle 4.x and is removed from the api in Gradle 5.x. It is replaced by sourceSet.output.classesDirs and iterating over each classesDir. Also the...
@ronh73 and @gregmunt in PR #74 pointed out an incompatibility with Gradle 5.X. I've subsequently found another: [CucumberJvmOptions](https://github.com/samueltbrown/gradle-cucumber-plugin/blob/master/src/main/groovy/com/excella/gradle/cucumber/CucumberJvmOptions.groovy#L23) that accepts a [FileResolver](https://github.com/gradle/gradle/blob/v5.3.0-RC1/subprojects/files/src/main/java/org/gradle/api/internal/file/FileResolver.java) is attempting to call Gradle's [DefaultForkOptions(FileResolver)](https://github.com/gradle/gradle/blob/v5.2.1/subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java#L44) which was...