From 7c8ffa3e1548ac63543a69aa59b7e716f64c8277 Mon Sep 17 00:00:00 2001 From: Karthikeyan Vaithilingam Date: Mon, 6 Jul 2020 19:57:49 +0400 Subject: [PATCH] ant: add page (#4153) --- pages/common/ant.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/common/ant.md diff --git a/pages/common/ant.md b/pages/common/ant.md new file mode 100644 index 000000000..b9bc0fd7e --- /dev/null +++ b/pages/common/ant.md @@ -0,0 +1,25 @@ +# ant + +> Apache Ant. +> Tool for building and managing Java-based projects. +> More information: . + +- Build a project with default build file `build.xml`: + +`ant` + +- Build a project using build file other than `build.xml`: + +`ant -f {{buildfile.xml}}` + +- Print information on possible targets for this project: + +`ant -p` + +- Print debudgging information: + +`ant -d` + +- Execute all targets that do not depend on fail target(s): + +`ant -k`