You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using <packaging>takari-maven-plugin</packaging>:
If the Javadoc for a Maven plugin contains an XML character like >, it will be copied as a literal in the <description> tag in META-INF/takari/mojos.xml. However, it is escaped properly in the normal Maven META-INF/maven/plugin.xml.
Example Mojo:
/** * Mapping: foo -> bar */@ParameterprivateMap<String, String> mapping;
The text was updated successfully, but these errors were encountered:
When using
<packaging>takari-maven-plugin</packaging>
:If the Javadoc for a Maven plugin contains an XML character like
>
, it will be copied as a literal in the<description>
tag inMETA-INF/takari/mojos.xml
. However, it is escaped properly in the normal MavenMETA-INF/maven/plugin.xml
.Example Mojo:
The text was updated successfully, but these errors were encountered: