* In V3 the apt cannot see JSR 250, JAXB api and JAXWS apis so I have to pass them
* explicitly to apt using the classpath option
* This will be changed after prelude once I move to asm as it is not thoroughly tested right now
*/
WebServiceContractImpl wscImpl = WebServiceContractImpl.getInstance();
ModulesRegistry modulesRegistry = wscImpl.getModulesRegistry();
Collection<Module> modules1 = modulesRegistry.getModules();
Iterator it= modules1.iterator();
StringBuffer buf = new StringBuffer();
buf.append(classesDir.getAbsolutePath());
String classpath1 = null;