I am using Cucumber-JVM (Groovy) and I was wondering if it is possible intercepting a customized annotation on top of a feature. Ex:
@MyAnnotation
Feature: Something here
//and somewhere a method like this:
def doSomethingForMyAnnotation() {...}
and if it is not possible, if there is an alternative to run some code before a specific feature is run (no @Before that is relative to Scenario).