You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by ws <ws...@yahoo.com> on 2004/08/10 02:55:42 UTC

How to display the BUILD RESULT

I would like to thank Erik Hatcher for replying to my
question at the manning site. As per Erik's
suggestion, I am moving it here.
-----------------------------------------------
Have a target as the following
<target name="deploy" depends="task1, task2">
..........
</target>
when task2 fails with error msgs, the output for
deploy displays "BUILD SUCESSFULL". How can I display
it as "BUILD FAILED"?
task1 & task2 are custom java classes which
throw new BuildException(exception);
Thank you very much for any input


		
__________________________________
Do you Yahoo!?
Yahoo! Mail - 50x more storage than other providers!
http://promotions.yahoo.com/new_mail

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


help needed ....................PLEASE HELP ????

Posted by Shailesh Sharma <sh...@yahoo.com>.
------------
<?xml version="1.0" encoding="iso-8859-1"?>
<project name="dev" default="all" basedir=".">
<property file="./application.properties"/>
<property name="failonerror" value="true" />
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>

<!-- This is configurations for deploying an application on wls8.1 on win2000 machine -->

<target name="deploy-application-testnet">
<echo message="...........second....."/>
<ftp server="montecarlo.unix.us.ups.com"
        remotedir="/export/bea/isf81/ups"
        userid="scs1aam"
        password="menon1973"
        depends="yes"
>
<fileset dir="/export/bea/isf81sp3/ISF/ArapImporter/current-development">
        <include name="*"/>
</fileset>
</ftp>

</target>
 
</project>
 
 
--------------
 
 
 
 
 
 
 
 
 

Buildfile: build.xml

 

deploy-application-testnet:

BUILD FAILED
file:/export/bea/isf81sp3/ISF/ArapImporter/myscripts/build.xml:19: Could not create task or type of type: ftp.

Ant could not find the task or a class this task relies upon.

This is common and has a number of causes; the usual 
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file: 
 - You have misspelt 'ftp'.
   Fix: check your spelling.
 - The task needs an external JAR file to execute
   and this is not found at the right place in the classpath.
   Fix: check the documentation for dependencies.
   Fix: declare the task.
 - The task is an Ant optional task and optional.jar is absent
   Fix: look for optional.jar in ANT_HOME/lib, download if needed
 - The task was not built into optional.jar as dependent
   libraries were not found at build time.
   Fix: look in the JAR to verify, then rebuild with the needed
   libraries, or download a release version from apache.org
 - The build file was written for a later version of Ant
   Fix: upgrade to at least the latest release version of Ant
 - The task is not an Ant core or optional task 
   and needs to be declared using <taskdef>.

Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath

Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.

Total time: 3 seconds

 

 

		
---------------------------------
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!