From 446934bdae591a96c93e80661e7a5b98e61d56c5 Mon Sep 17 00:00:00 2001 From: Poonam kumawat <103033530+poonam-kumawat@users.noreply.github.com> Date: Wed, 5 Oct 2022 04:47:15 +0530 Subject: [PATCH] Update 102-ant.md (#2031) * Update 102-ant.md * Update content/roadmaps/110-java/content/102-java-build-tools/102-ant.md * Update content/roadmaps/110-java/content/102-java-build-tools/102-ant.md Co-authored-by: Kamran Ahmed --- .../110-java/content/102-java-build-tools/102-ant.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/roadmaps/110-java/content/102-java-build-tools/102-ant.md b/content/roadmaps/110-java/content/102-java-build-tools/102-ant.md index ff7397724..f4ce7d6df 100644 --- a/content/roadmaps/110-java/content/102-java-build-tools/102-ant.md +++ b/content/roadmaps/110-java/content/102-java-build-tools/102-ant.md @@ -1,6 +1,7 @@ # Ant -Ant is a Java-based build tool created as part of the Apache open-source project. You can think of it as a Java version of make. Ant scripts have a structure and are written in XML. Similar to make, Ant targets can depend on other targets. +Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications. Ant supplies a number of built-in tasks allowing to compile, assemble, test and run Java applications. Ant can also be used effectively to build non Java applications, for instance C or C++ applications. More generally, Ant can be used to pilot any type of process which can be described in terms of targets and tasks. -Reference Resource -Apache Ant Website \ No newline at end of file +Free Content +Ant Official Website +Ant Tutorial \ No newline at end of file