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
/**
* If {@code true} the execution of the Mojo will be skipped; otherwise the Mojo will be executed.
*
* @since 0.0.1
*/
@Parameter(property = "editorconfig.skip", defaultValue = "false")
private boolean skip;
the PluginDescriptorMojo produces the following fragment in plugin.xml:
<parameter>
<name>skip</name>
<type>boolean</type>
<required>false</required>
<editable>true</editable>
<description>If {@code true} the execution of the Mojo will be skipped; otherwise the Mojo will be executed.
@since 0.0.1</description>
</parameter>
Note that @since 0.0.1 is a part of <description> (which should not be the case) and <since> tag is missing (expected: present).
I guess the same holds for @deprecated
The text was updated successfully, but these errors were encountered:
Given the following Java source of a parameter
the
PluginDescriptorMojo
produces the following fragment inplugin.xml
:Note that
@since 0.0.1
is a part of<description>
(which should not be the case) and<since>
tag is missing (expected: present).I guess the same holds for
@deprecated
The text was updated successfully, but these errors were encountered: