Author: rfscholte
Date: Mon Aug 15 14:48:09 2016
New Revision: 1756391
URL: http://svn.apache.org/viewvc?rev=1756391&view=rev
Log:
[MPLUGIN-292] HelpMojo contains malformed HTML which causes javadoc to fail
under JDK 8
Apply proper html escaping
Modified:
maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm
Modified:
maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm
URL:
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm?rev=1756391&r1=1756390&r2=1756391&view=diff
==============================================================================
---
maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm
(original)
+++
maven/plugin-tools/trunk/maven-plugin-tools-generators/src/main/resources/help-class-source.vm
Mon Aug 15 14:48:09 2016
@@ -359,7 +359,7 @@ public class HelpMojo
* @param str String to repeat
* @param repeat number of times to repeat str
* @return String with repeated String
- * @throws NegativeArraySizeException if <code>repeat < 0</code>
+ * @throws NegativeArraySizeException if <code>repeat < 0</code>
* @throws NullPointerException if str is <code>null</code>
*/
private static String repeat( String str, int repeat )