gradle-cucumber-plugin
gradle-cucumber-plugin copied to clipboard
cucumber task configuration appears to be global rather than per-project?
in a multi-project build.gradle i.e.,
project(':projectA') {
cucumber {
tags = ['@billing', '@important']
}
}
project(':projectB') {
cucumber {
tags = ['@logging']
}
}
the gradle-cucumber-plugin appears to treat the cucumber { ... }
task configuration as global and so the second block overrides the first and any configuration (e.g., the @logging
tag in this case) is applied to the CLI argument for both projects