slachiewicz opened a new pull request, #1307: URL: https://github.com/apache/maven-site-plugin/pull/1307
`DocumentRenderer#getOutputPath()` was added in Doxia Sitetools 2.0.0 and `getOutputName()` deprecated in its favour. The adoption here was cosmetic: `ReportDocumentRenderer` and `SitemapDocumentRenderer` implemented `getOutputPath()` as `return getOutputName();`, which is exactly what the interface default does, and `CategorySummaryDocumentRenderer` implemented only the deprecated method. Every path still ended in `getOutputName()`. All three now hold the value in `getOutputPath()`, reading `DocumentRenderingContext#getOutputPath()` rather than the equally deprecated `#getOutputName()`, with `getOutputName()` left as a deprecated delegate because the interface still declares it abstract. No behaviour change: the strings are the same. The counterpart in Doxia Sitetools is apache/maven-doxia-sitetools#690. Verified: `mvn verify` → BUILD SUCCESS. *This change was created with AI assistance.* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
