Details
-
Type:
New Feature
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
At present the 'nodesc' option is not supported on the 'castor:generate' maven tag. This functionality could be added relatively easily by including the following snippet on line 110 of plugin.jelly:
<j:if test="${!empty(nodesc) and !nodesc.trim().equals('false')}">
<ant:arg value="-nodesc"/>
</j:if>
Adding the script above would enable the nodesc function as shown in the following example:
<castor:generate
schema="example.xsd"
package="org.castor"
types="j2"
marshal="false"
nodesc="true"/>