Looks like xdoc no longer honor my preferences... In the following code
(extracted from xdoc), properties are taken from ${plugin.dir}/ui.properties
<util:properties uri="file:${plugin.dir}/ui.properties"
var="uiProperties"/>
<!-- Copy maven supplied stylesheets. -->
<copy todir="${maven.docs.dest}/style" overwrite="yes" filtering="yes">
<filterset>
<j:forEach var="uiProperty" items="${uiProperties.keys()}">
<util:replace var="token" oldChar="." newChar="_"
value="${uiProperty}"/>
<j:set var="token" value="${token.substring(6).toUpperCase()}"/>
<filter token="${token}"
value="${uiProperties.getProperty(uiProperty)}"/>
</j:forEach>
</filterset>
<fileset dir="${plugin.dir}/css">
<include name="**/*.css"/>
</fileset>
</copy>
There is no way to override that. I will file a JIRA for that.
Charles
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>