How do I create a new Java project, without existi

2019-07-16 00:36发布

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.

1条回答
一夜七次
2楼-- · 2019-07-16 01:23

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.

查看更多
登录 后发表回答