We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actual behavior When package_to_scan is specified, the step implementations are not recongnized
Steps to replicate
gauge init java_maven
with group id grp1
package grp2.level2; import com.thoughtworks.gauge.Step; import com.thoughtworks.gauge.Table; import com.thoughtworks.gauge.TableRow; import java.util.HashSet; import static org.assertj.core.api.Assertions.assertThat; public class StepImplementation { @Step("Something") public void implementation1() { } }
example.spec
Execution is successful
package_to_scan=grp1,grp2.level2
During validation the steps are marked as unimplemented
Version
Gauge version: 0.9.9.nightly-2018-06-01 Commit Hash: 812f26e Plugins ------- java (0.6.9.nightly-2018-06-06)
Related to #161
The text was updated successfully, but these errors were encountered:
Seems to be working fine. Check if you have added the correct nightly version of gauge-java in the pom.xml as well.
Sorry, something went wrong.
Working as expected with
Gauge version: 1.0.1.nightly-2018-06-19 Commit Hash: 583ef1d Plugins ------- java (0.6.9.nightly-2018-06-12)
Re-load after making the following pom changes.
<repositories> <repository> <id>maven-gauge-java</id> <url>https://dl.bintray.com/gauge/maven-gauge-java</url> </repository> </repositories> <dependencies> <dependency> <groupId>com.thoughtworks.gauge</groupId> <artifactId>gauge-java</artifactId> <version>0.6.9.nightly-2018-06-12</version> <scope>test</scope> </dependency> ... </dependencies>
No branches or pull requests
Actual behavior
When package_to_scan is specified, the step implementations are not recongnized
Steps to replicate
gauge init java_maven
example.spec
from the IDE.package_to_scan=grp1,grp2.level2
Version
Related to #161
The text was updated successfully, but these errors were encountered: