Reputation: 10898
I switched to net-beans 6.9.1 to develop my php zend framework projects. Now I want it to work with ANT. I have already an build directory with an build.xml. Can someone tell me how to configure and run my ant scripts from within netbeans?
Upvotes: 0
Views: 1936
Reputation: 1307
Go to Tools and Plugins, and install the Ant plugin under the "Java SE" category. You should also install the Ant 1.8.1 documentation plugin.
Then you can just right-click on your build.xml file, and you should be able to run targets in Ant.
Upvotes: 2