top of page
Search

Installing Eclipse and setting up maven Step-by-step tutorial

Updated: Jan 5, 2021




Step 1 : Download Eclipse

You can download latest version of eclipse from https://www.eclipse.org/downloads





Step 2: Set the workspace and Eclipse opens with its welcome screen





Step 3: Install Maven


Click Help -> Install New software...


Enter the url "http://download.eclipse.org/technology/m2e/releases/" in work with tab to download maven.

click Next.


Accept the agreement and finish installation.



Restart Eclipse to create your first Maven project.


Step 4: Create New Maven Project


Click File-> New -> Maven Project


Search for "maven-archetype-quickstart" and hit next.



Mention Group Id and Artifact Id


Click Finish and you could see the project created under Project Explorer tab.

Open Pom.xml, add required dependencies, select Run As -> Maven clean and Maven Install.


and In console, we could see BUILD SUCCESS.


Congratulations!!! You are done setting up your new eclipse and Configured Maven Successfully. Happy Coding!


50 views0 comments

Recent Posts

See All

Minimum Deletions to Make Character Frequencies Unique

A string s is called good if there are no two different characters in s that have the same frequency. Given a string s, return the minimum number of characters you need to delete to make s good. The f

Smallest String With A Given Numeric Value

The numeric value of a lowercase character is defined as its position (1-indexed) in the alphabet, so the numeric value of a is 1, the numeric value of b is 2, the numeric value of c is 3, and so on.

bottom of page