Java Mailing List Archive

http://www.ant-tasks.com/

Apache Ant Archive

» Ant Users List
» Ant Developers List
exec task failing

exec task failing

2005-06-22       - By Bijo Alex Thomas
Reply:     1     2     3  

It seems that you are trying to execute the command
'/usr/local/bin/php'
with the argument
'httpd/htdocs/includes/tests/alltests.php'

In that case it should be
<exec executable="/usr/local/bin/php">
<arg value="httpd/htdocs/includes/tests/alltests.php"/>
</exec>

Attribute 'executable' does not buy any arguments.

Regards,
Bijo

_________________________________
Bijo Alex Thomas
DSRC, 6, Smith Road, Chennai - 2
Mail: bijoalex@(protected)
Website: http://dsrc.com


----- Original Message -----
From: "blackwater dev" <blackwaterdev@(protected)>
To: "Ant Users List" <user@(protected)>
Sent: Wednesday, June 22, 2005 08:41 PM
Subject: exec task failing


I have this build file:

<project name="testing" default="checkout" basedir="/home/me">
<target name="checkout" description="run unit test">
  <exec  executable="/usr/local/bin/php
httpd/htdocs/includes/tests/alltests.php">
  </exec>
</target>
</project>

And it fails with this error:
checkout:

BUILD FAILED
file:/httpd/tcci/dev2/build.xml:5: Execute failed:
java.io.IOException: No such file or directory

I installed j2dsk1.4.2_08 yesterday and just did which java and it is
looking for the java here:

/usr/bin/java
/usr/bin/javac

each of these are links to
usr/java/j2sdk1.4.2_08/bin/java
usr/java/j2sdk1.4.2_08/bin/javac

Why is this build failing?

Thanks!

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)






---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)


©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.