1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-01 05:21:43 +02:00

Added information for java build tool (#2060)

* ant documentation added

* Java Build tool readme added

* Update content/roadmaps/110-java/content/102-java-build-tools/102-ant.md

* Update content/roadmaps/110-java/content/102-java-build-tools/readme.md

Co-authored-by: haseebansari <haseeb.ansari@qordata.com>
Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>
This commit is contained in:
Haseeb Ansari
2022-10-04 17:31:32 +05:00
committed by GitHub
parent 8e4a7b1cad
commit 484b67b0e9
2 changed files with 6 additions and 2 deletions

View File

@@ -3,4 +3,4 @@
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.
<ResourceGroupTitle>Reference Resource</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://ant.apache.org/'>Ant Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://ant.apache.org/'>Apache Ant Website</BadgeLink>

View File

@@ -1 +1,5 @@
# Java build tools
# Build Tools
A build tool is a program or command-line utility that automates the process of compiling, assembling, and deploying software.
Build tools are not only limited to compiling code; they can also help with package management, dependency handling, and continuous integration systems.