Ant默认配置文件不是build.xml该如何编写命令进行编译打包

Ant的构件文件是基于XML编写的,默认名称为build.xml。

ant命令默认寻找build.xml文件。若文件名为hello.xml时,读者还需要对命令做少许改变,

改为:ant –f hello.xml 、

         ant –buildfile hello.xml 或ant –file hello.xml。

相关推荐