Maven for build Automation explained easy
Maven tool from Apache is used for the build automation . To install maven in windows environment https://mkyong.com/maven/how-to-install-maven-in-windows/ Earlier, there used to be a manual build to be done by the developer and provide the generated war, jar, or ear file to the testing team. The testing team conducts multiple scenarios and thus finally sent to the administration team. then they follow the deployment procedure to make the application available to access. With the help of maven one can generate the build from anywhere without installing the eclipse in the environment, and the test cases also can be run along with the maven and on success or failure generate a report and thus continue the process. The other main advantage of the Maven is the addition of dependencies. i.e, the jar files or library files that are required to fulfill some of the functionalities of the development are to be added manually in the beginning. But, with maven one can just import the ...