Breaking Changes:
- Stop using global properties to configure the plugin and fully use the
veracodeSetup extension instead.
Other Changes:
- Retrieve flaw report summary in workflow tasks and add option to fail
the build if there are new flaws introduced.
How to keep old behaviour:
The old behaviour was making use of global properties, e.g. app_id
,
sandbox_id
, build_version
, etc. to configure the plugin tasks.
The setup has fully moved to veracodeSetup now. To use global properties
define the veracodeSetup property to get its input from a global one:
veracodeSetup {
app_id = project.findProperty("app_id")
}
With each of the properties that you were previously using.
See README for more details.
Thanks @tonytvo for his code reviews 👍