2012/5/10 chavanmukeshp <[email protected]> > Hello Friends, > > Can you please suggest me how to convert below ant target into maven, > > <target name="InitialiseContext"> > > <java classname="com.exceptions.ExceptionHandler" > > <arg value=”initializeContext”</> > > <arg value=${bldReqPath}/> > > </java> > > </target> >
No straight conversion, but I suppose you need the Exec Maven plugin: http://mojo.codehaus.org/exec-maven-plugin/ Antonio
