I activate in a parent pom.xml
Spring support using
<activation>
<file>
<exists>src/main/resources/*beans.xml</exists>
</file>
</activation>
This works fine.
When I try to activate the CucumberJVM stuff in a profile using
<activation>
<file>
<exists>src/test/resources/**/*.feature</exists>
</file>
</activation>
However this refuses to work. So I guess the **
wildcard is ignored in this context.
Is this normal, is there a workaround to get this profile activated when .feature
files are present?
context.getProjectProperties()
is never called. – Demitria