From cdcf31ad4279dbf1be927e9c48fb3b0ce5a344b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotrek=20=C5=BBygie=C5=82o?= Date: Wed, 8 Jul 2020 18:16:25 +0200 Subject: [PATCH] Use maven-plugin-plugin in version managed in parent Currently used version generates invalid javadoc for `target/generated-sources/plugin/org/codehaus/mojo/buildhelper/HelpMojo.java`: ```java 346 /** 347 * Splits the specified text into lines of convenient display length. 348 * 349 * @param text The text to split into lines, must not be null. 350 * @param indent The base indentation level of each line, must not be negative. 351 * @param indentSize The size of each indentation, must not be negative. 352 * @param lineLength The length of the line, must not be negative. 353 * @return The sequence of display lines, never null. 354 * @throws NegativeArraySizeException if indent < 0 355 */ 356 private static List toLines( String text, int indent, int indentSize, int lineLength ) ``` where line 354 contains `<` instead of entity. 3.5.1 m-p-p has it fixed (MPLUGIN-324) and comes from current parent. --- pom.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/pom.xml b/pom.xml index be25b1d2..dca1c95c 100644 --- a/pom.xml +++ b/pom.xml @@ -127,7 +127,6 @@ org.apache.maven.plugins maven-plugin-plugin - 3.5 true