It seems like it's a fairly common thing to do. I want to create a new Java application that does not have any existing source files, but be able to edit the Ant scripts.
Asked
Active
Viewed 368 times
1 Answers
2
You should be able to edit any Ant file that Netbeans generates as part of a new project. They're stored in the project folder (the one that contains the nbproject directory) as build.xml, which in turn references build-impl.xml.
The idea is that you can edit build.xml in order to override the Ant targets in build-impl.xml.

yalestar
- 9,334
- 6
- 39
- 52
-
I don't see a way to edit them inside of NetBeans, however, but I'll poke around some more. – Thomas Owens Jun 12 '09 at 09:48
-
build.xml will be in the root of your project. You'll see it in the "Files" window but not in the "Project" window. – Dave Smith Jun 12 '09 at 18:50