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
OK, that's great and all, but how do I fix it so my project will run?
ReplyDeleteIt will depend on your project. You will need to generate a project file if one does not exist.
ReplyDeleteits good to know that the build file is project dependent. and doesnt have any thing to do with proper installation of ant.
ReplyDeletei have verified the installation with
ant -version