My problem is that my simple build script who will just print a message is not working in Eclipse Indigo Service Release 2. The Script is given below-
<target name="greetings">
<echo>
Eclipse!
</echo>
</target>
When I tried to execute this script, it is not giving me any error but not printing the message 'Eclipse!'. Also it is not terminating the script, it is continuously in running mode, I have to manully stop it. My project is pointing to 'JDK1.6.0_32' not JRE. All the necessary jars like 'tools.jar' is there. Please let me know why it is happening.
Hi, Thanks everybody for the reply. Yes it is there , the full script is-
<?xml version="1.0" encoding="UTF-8"?>
<project name="Test" default="greetings" basedir=".">
<target name="greetings">
<echo> Eclipse! </echo>
</target>
</project>
But still the same problem. It is not showing anything. May be problem is somewhere else in configuration. Please let me know.