I've just committed a change that lets you use ant properties in tag
values.  THere's a pretty simple example in Account:

 *   @jboss:table-name "account"
 *   @jboss:create-table "${jboss.create.table}"
 *   @jboss:remove-table "${jboss.remove.table}"
 *   @jboss:tuned-updates "${jboss.tuned.updates}"
 *   @jboss:read-only "${jboss.read.only}"

where the corresponding values are defined in the build.xml

      <!-- These are here to test the use of properties in @tags -->
      <property name="jboss.create.table" value="true" />
      <property name="jboss.remove.table" value="true" />
      <property name="jboss.tuned.updates" value="true" />
      <property name="jboss.read.only" value="false" />

Jason - let me know if this does the trick

cheers
dim


_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to