You don't need <exec> - use <java> instead.
--
Jeffrey E. Care ([EMAIL PROTECTED])
WebSphere v7 Release Engineer
WebSphere Build Tooling Lead (Project Mantis)
Guruprasad R <[EMAIL PROTECTED]> wrote on 01/18/2006 07:40:44 AM:
> I am using ant on my Windows 2000 OS. I want to execute a command "java
> weblogic.ejbc npacejb.jar" from a particular directory in the command
prompt
> using ANT. i have written the script as below. I am not sure whether i
have
> written the script properly.
>
> <target name="exectask" depends="makejar">
> <exec executable="cmd" os="Windows 2000" command="/c java
weblogic.ejbc
> npacejb.jar">
> <arg line="${src}/classes"/>
> </exec>
>
> i am getting a message as "Please use the executable attribute and
nested
> arg elements." how do i do this? Please help.