Saturday, 4 March 2017

Quick Review of Maven:-Introduction

Maven:-(1/4)

-Maven is a Java Tool.So You must have java installed on your System.

-Minimum Version of Java installed on your system must be equal to or greater then 1.7

-Maven is a project Management tool that is based on POM(Project Object Model)

Why Should We Use Maven:-

1. It makes project easy to build.

2. It proviedes us directory Stucture.

3. Maven project can be used as a dependency in any other project.

Simple Java Project :-


Disadvantage of having Java Project:-

-No Standard Directory Structure

-Not easy to build

-add manually all the dependencies in your project.

Simple Maven Project:-


-Advantage of having Maven Project:-

- Standard Directory Structure

- Easy to build

- Add Dependencies in Pom.xml as it will download Jars from internet automatically.