From: mmindenhall <nu...@jb...> - 2005-06-24 19:40:57
|
There is a problem with XDoclet support for this tag, unless you happen to be using JBoss version 3.2.x. Within the jboss_xml.xdt file, the code that generates the depends tag is wrapped with the following, which specifies that the tag should be generated only for version 3.2: <XDtConfig:ifConfigParamEquals paramName="Version" value="3.2"> However, it should be wrapped with this instead, which specifies that the tag should be generated for all versions >3.2: <XDtConfig:ifConfigParamGreaterOrEquals paramName="Version" value="3.2"> This occurs in 3 places within the file (once each for entity, session, and message-driven beans). The same problem may or may not exist in other jboss*.xdt files -- I didn't check. I have created an issue on Xdoclet's JIRA. Here is a link to the issue, which includes a fixed jboss_xml.xdt and a fixed version of the jarfile for xdoclet version 1.2.3. http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1444 View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3882650#3882650 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3882650 |