A simple question about istrue of Ant.

Reply

Join Date: Nov 2004
Posts: 189
Reputation: George2 is an unknown quantity at this point 
Solved Threads: 0
George2 George2 is offline Offline
Junior Poster

A simple question about istrue of Ant.

 
0
  #1
Feb 25th, 2006
Hello everyone,


I have written the folllowing scripts, just want to output "Foo is true." when the property foo is set to true. But when using Eclipse to run the simple script, there are something wrong. Could anyone help to check what is the wrong with my shell scripts?

Source codes,

--------------------
<project default="Trivial">
<target name="Trivial">
<echo>Target trivial is running.</echo>
<property name="foo" value="true" />
<istrue value="${foo}" />
<then>
<echo> Foo is true. </echo>
</then>
</target>

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

Error messages,
--------------------
Buildfile: C:\Documents and Settings\Admin\TestBuild.xml
Trivial:
[echo] Target trivial is running.
BUILD FAILED: C:\Documents and Settings\Admin\TestBuild.xml:5: Could not create task or type of type: istrue.

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 'istrue'.
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 the JAR file and/or libraries
implementing the functionality were not found at the time you
yourself built your installation of Ant from the Ant sources.
Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
task and make sure it contains more than merely a META-INF/MANIFEST.MF.
If all it contains is the manifest, then rebuild Ant with the needed
libraries present in ${ant.home}/lib/optional/ , or alternatively,
download a pre-built 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>.
- You are attempting to use a task defined using
<presetdef> or <macrodef> but have spelt wrong or not
defined it at the point of use

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: 391 milliseconds
--------------------


thanks in advance,
George
Reply With Quote Quick reply to this message  
Join Date: Aug 2005
Posts: 216
Reputation: hooknc is an unknown quantity at this point 
Solved Threads: 8
hooknc hooknc is offline Offline
Posting Whiz in Training

Re: A simple question about istrue of Ant.

 
0
  #2
Feb 25th, 2006
What the error is saying is that istrue is not an ant task that shipped with ant called "istrue". Which there isn't.

Try looking at ants "condition" task. It should be able to do what you need it to. You can then nest different types of condition elements in your "condition" task.
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 189
Reputation: George2 is an unknown quantity at this point 
Solved Threads: 0
George2 George2 is offline Offline
Junior Poster

Re: A simple question about istrue of Ant.

 
0
  #3
Feb 27th, 2006
hooknc,


Originally Posted by hooknc
What the error is saying is that istrue is not an ant task that shipped with ant called "istrue". Which there isn't.

Try looking at ants "condition" task. It should be able to do what you need it to. You can then nest different types of condition elements in your "condition" task.
Very valuable advice. Thanks!


regards,
George
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 2
Reputation: JustSomeGuy is an unknown quantity at this point 
Solved Threads: 0
JustSomeGuy JustSomeGuy is offline Offline
Newbie Poster

Re: A simple question about istrue of Ant.

 
0
  #4
Aug 16th, 2006
Originally Posted by George2
I have written the folllowing scripts, just want to output "Foo is true." when the property foo is set to true.
I'm trying to figure out how to do conditional execution without resorting to triggering targets everywhere, which is an antified version of goto. Here's a "goto" way to code your trivial example:

  1. <project default="Trivial">
  2.  
  3. <property name="foo" value="true" />
  4. <condition property="foo.true">
  5. <istrue value="${foo}"/>
  6. </condition>
  7.  
  8. <target name="Trivial" depends="FooTrue,FooFalse">
  9. <echo> Target trivial is running. </echo>
  10. </target>
  11.  
  12. <target name="FooTrue" if="foo.true">
  13. <echo> Foo is true. </echo>
  14. </target>
  15.  
  16. <target name="FooFalse" unless="foo.true">
  17. <echo> Foo is False. </echo>
  18. </target>
  19.  
  20. </project>
What's the right way to do conditional execution without resorting to goto-ing a target with a depends= and if= clause?
Last edited by JustSomeGuy; Aug 16th, 2006 at 3:56 pm.
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 3
Reputation: lybarger999 is an unknown quantity at this point 
Solved Threads: 0
lybarger999 lybarger999 is offline Offline
Newbie Poster

Re: A simple question about istrue of Ant.

 
0
  #5
Aug 17th, 2006
What's the right way to do conditional execution without resorting to goto-ing a target with a depends= and if= clause?

Unfortunately, I think that's really the way it works. I write and maintain a lot of Ant code and I've had to resort to that (double target call with if and unless attributes) on a few occasions, and to writing custom ant tasks on others.
Reply With Quote Quick reply to this message  
Join Date: Dec 2008
Posts: 1
Reputation: vinu09 is an unknown quantity at this point 
Solved Threads: 0
vinu09 vinu09 is offline Offline
Newbie Poster

Re: A simple question about istrue of Ant.

 
0
  #6
Dec 23rd, 2008
--------------------
<project default="Trivial">
<target name="Trivial">
<echo>Target trivial is running.</echo>
<property name="foo" value="true" />
<istrue value="${foo}" />
<then>
<echo> Foo is true. </echo>
</then>
</target>

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

I don't know whether this is too late , but I think there is genuine w
error here which says istrue can't be created as it is only valid inside <condition>

--Thanks
Vinu
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Java Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC