I have created a multi-module maven archetype which will accept the wsdl as input and generate interface and implementation class.
I have given the wsdl in the META-INF/wsdl/Myservice.wsdl.
But my requirement I need to specify the location of wsdl eg:c:/wsdl/Myservice.wsdl using command line when I am generating the project using the archetype or else need to specify the location in the maven archetype properties itself, So that the archetype must get the wsdl and place it inside META-INF/wsdl/Myservice.wsdl and generate the code.
Guide me, how to do it in maven archetype?