I was reading this article about new features in Eclipse 3.1. One feature
mentioned that caught my eye was the ability to set a project based on an
existing ANT build file, and the ability to export a project settings to an
ANT build file. Unfortunately the article didn't explain how to do this
import/export. I searched Eclipse's help, to no avail. After some messing
around with eclipse I found out how to do it.
To export your project settings to an ANT build file:
In your navigator window, look for a file called ".project" Right click on
the file and click on "export" On the window that pops up, select "Ant
Buildfiles" and click on "next" Select the appropriate project to use to
generate the ANT buildfile Click "finish"
You should now have two new build files on your proj... (more)