Hey, I have a weird case trying to deprecate a "finalName" property where said property can still be set by the user.
Here is the definition:
/**
* Name of the generated archive.
* @since 1.0
*/
@Parameter(defaultValue = "${project.build.finalName}", readonly = true)
private String finalName;
That property can be set when configuring the plugin and its value is
injected.
What am I missing?
Thanks,
S.
