I think this is easy, I'm not sure. I'm building a Java/Groovy project that's based on a SOAP-based web service. I normally generate the client stubs using the "wsimport" command from the command line ahead of time, but I'd like to make that part of the overall build process if the stubs don't already exist.
I'd like to define a task that checks to see if the stubs are already there (I know what the package is, so I can check whether it exists or not), and, if not, runs wsimport before the compile task. How do I do that? Ken -- Kenneth A. Kousen President Kousen IT, Inc. Email: [email protected] Site: http://www.kousenit.com Blog: http://kousenit.wordpress.com Twitter: @kenkousen
