gradle-cucumber-plugin icon indicating copy to clipboard operation
gradle-cucumber-plugin copied to clipboard

cucumber task configuration appears to be global rather than per-project?

Open dnwe opened this issue 8 years ago • 0 comments

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

dnwe avatar May 26 '16 08:05 dnwe