This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-pdf-plugin.git
commit 286dcb19016670e0788cfda674b2017363ec9f32 Author: Michael Osipov <[email protected]> AuthorDate: Sun Nov 28 21:39:41 2021 +0100 [MPDF-99] Add workaround for MPOM-269 --- pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pom.xml b/pom.xml index 288bcb2..8f9eb08 100644 --- a/pom.xml +++ b/pom.xml @@ -285,6 +285,13 @@ under the License. <artifactId>maven-pdf-plugin</artifactId> <version>1.4</version> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> <!-- remove after MPOM-269 --> + <tagletArtifacts combine.self="override"/> + </configuration> + </plugin> </plugins> </pluginManagement>
