MPLUGIN-68: Make generated mojo description valid XHTML

Submitted by: Benjamin Bentmann
Reviewed by: Vincent Siveton

o patch applied

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@617298 13f79535-47bb-0310-9956-ffa450edef68
master
Vincent Siveton 2008-01-31 23:48:11 +00:00
parent 852b7c545a
commit 2d1e9161be
1 changed files with 2 additions and 1 deletions

View File

@ -132,6 +132,7 @@ public class PluginXdocGenerator
{
w.startElement( "p" );
w.writeMarkup( "<b>Mojo Attributes</b>:" );
w.endElement(); //p
w.startElement( "ul" );
String value = mojoDescriptor.getDeprecated();
@ -228,7 +229,6 @@ public class PluginXdocGenerator
}
w.endElement();//ul
w.endElement();//p
}
private void writeGoalParameterTable( MojoDescriptor mojoDescriptor, XMLWriter w )
@ -458,3 +458,4 @@ public class PluginXdocGenerator
}