Currently the `notifyTesters` field in the `DistributeResourceTask` is hardcoded to `false` but could be easily set as a parameter when generating the `UploadTask`
Adding this will give developers control over whether the testers should be notified of the new release, rather than assuming that they always do not want to notify.
Hi Niall Kelly Thanks for raising this. I think that this should be an optional flag and probably be defaulted to true. By optional I mean it should not be required in the @DataBoundConstructor but instead use a @DataBoundSetter. Have a look at the release notes for an example.
Currently the `notifyTesters` field in the `DistributeResourceTask` is hardcoded to `false` but could be easily set as a parameter when generating the `UploadTask`
Adding this will give developers control over whether the testers should be notified of the new release, rather than assuming that they always do not want to notify.
Acceptance Criteria: # Notify Testers can be specified in the configuration for the plugin. # Notify Testers is optional. # Notify Testers defaults to true. # A test is provided to assert the status of the flag in the uploaded JSON.