How can I get a list of build targets in Ant?

前端 未结 4 988
栀梦
栀梦 2021-01-29 20:27

My codebase has a long build.properties file written by someone else. I want to see the available built targets without having to search through the file manually.

4条回答
  •  执念已碎
    2021-01-29 20:49

    You can check the list of target and default target in build.xml by the following command

    ant -p built.xml

提交回复
热议问题