tag: cucumber
Managing cucumber-java dependencies with Maven BOM
As users of cucumber-java, it’s quite common to use multiple cucumber libraries within a project which sometimes results in a conflict when the cucumber dependency versions are not in sync. These conflicts can eat a lot unnecessary time to investigate and resolve.
Good news! This can now be resolved easily using Maven’s Bill of Materials (BOM). We can take advantage of Maven’s BOM concept for cucumber version 7.0.0 onwards. Read →
BeforeAll and AfterAll workaround for cucumber-java
As a cucumber-jvm user, I’ve always felt the need for a @BeforeAll
and @AfterAll
hooks. Although, cucumber still does not have a support for this yet, there’re many ways to workaround. Read →