Skip to content

Commit

Permalink
Use maven-plugin-plugin in version managed in parent
Browse files Browse the repository at this point in the history
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 <code>null</code>.
   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 <code>null</code>.
   354	     * @throws NegativeArraySizeException if <code>indent < 0</code>
   355	     */
   356	    private static List<String> 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.
  • Loading branch information
pzygielo committed Jul 14, 2020
1 parent 7047a9d commit cdcf31a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pom.xml
Expand Up @@ -127,7 +127,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.5</version>
<configuration>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
</configuration>
Expand Down

0 comments on commit cdcf31a

Please sign in to comment.