I'm using XDoclet to generate my web.xml and it's working just
fine. However, I'd now like to parameterise the web.xml
generation using XDoclet templates within files in my merge dir.
For example,
<context-param>
<param-name>listenPort_http</param-name>
<param-value><XDtConfig:configParameterValue
paramName="httpPort"/></param-value>
</context-param>
Will result in the following being generated to web-xml:
<context-param>
<param-name>listenPort_http</param-name>
<param-value>80</param-value>
</context-param>
If I've set httpPort=80 somewhere. I've no problem
setting this from ant, but can someone let me know how to
this from Maven (project.properties or maven.xml?).
Thanks,
ct
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]