Buildfile: build.xml does not exist! Build failed
Solution/Explanation: This message is showing you that ant works and that it is looking for your project file. The documentation by Apache gives this explanation:
You can check the basic installation with opening a new shell and typing ant. You should get a message like thisYou can see that this is not really an error but just a notification.
Buildfile: build.xml does not exist! Build failed
So Ant works. This message is there because you need to write an individual build file for your project. With a ant -version you should get an output like
Apache Ant version 1.7.0 compiled on December 13 2006
3 comments:
OK, that's great and all, but how do I fix it so my project will run?
It will depend on your project. You will need to generate a project file if one does not exist.
its good to know that the build file is project dependent. and doesnt have any thing to do with proper installation of ant.
i have verified the installation with
ant -version
Post a Comment