New feature, improvement proposal
Several things in org.apache.maven.api.model are marked as deprecated, for example
@Deprecated(
since = "4.0.0"
)
public String getScriptSourceDirectory() {
return this.scriptSourceDirectory;
}
But there is no information what to use instead, resulting in the users (I found it in maven-resource-plugin) only got the deprecated warning, but not hint how to handle it.