I
am attempting to use xdoclet from within Maven and am running into an
odd issue. The strutsconfig.xml is generated, but none of my actions
are mapped within. I believe that xdoclet is finding them (there are
two just now), but it seems to get stuck while trying to process them.
So if I run maven with the -X option, I see this block repeated many,
many times:
[webdoclet] [DEBUG] Finding class com.example.user.CreateUserAction.Action [webdoclet] [DEBUG] Finding class com.example.user.Action [webdoclet] [DEBUG] Finding class java.lang.Action [webdoclet] [DEBUG] Finding class com.example.user.RetrieveUsersAction.Action [webdoclet] [DEBUG] Finding class com.example.user.Action [webdoclet] [DEBUG] Finding class java.lang.Action Note: my classes are CreateUserAction and RetrieveUsersAction. The other two are not defined anywhere in the project (and, yes, look very suspicious). Also, for the record, I am subclassing the struts action and importing the proper class. There is no error displayed and maven runs along happily, so it's a bit hard to diagnose this. I'd appreciate any insight into it. Thanks, Rob |