You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/eclipse/2022-08-06-maven-project.md
+15-17
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ title: "How To Create A Maven Project In Eclipse?"
4
4
author: gaurav
5
5
categories: [Eclipse, Maven Project]
6
6
toc: true
7
-
description: "In this tutorial we will see how to create a maven project in eclipse."
7
+
description: "In this tutorial, we will see how to create a maven project in Eclipse."
8
8
hidden: false
9
9
---
10
10
11
-
In this short tutorial we will see how to create a maven project in eclipse.
11
+
In this short tutorial, we will see how to create a maven project in Eclipse.
12
12
13
13
## Introduction
14
14
15
-
Maven is most popular build automation tool used to create and manage java projects.
15
+
Maven is the most popular build automation tool used to create and manage Java projects.
16
16
17
17
Maven helps developers to save time by:
18
18
@@ -23,7 +23,7 @@ Maven helps developers to save time by:
23
23
24
24
The Eclipse IDE is the most popular IDE for Java. It provides support for the Maven build.
25
25
26
-
So, let's check the following step by step guide on how to create a maven project in eclipse.
26
+
So, let's check the following step-by-step guide on how to create a maven project in Eclipse.
27
27
28
28
## How To Create Maven Project In Eclipse?
29
29
@@ -33,7 +33,7 @@ To create a simple maven project in the eclipse, kindly follow the below steps:
33
33
34
34
Open eclipse.
35
35
36
-
If you are opening the eclipse for first time in a workspace, you will see a 'Welcome' tab, kindly close it.
36
+
If you are opening the eclipse for the first time in a workspace, you will see a 'Welcome' tab, kindly close it.
37
37
38
38
Then click on File>New>Project.
39
39
@@ -47,21 +47,21 @@ Search 'maven' using the search bar given under 'Wizards' and select the 'Maven
47
47
48
48

49
49
50
-
When you click the 'Next' button on 'New Project' window, you will see the 'New Maven Project' window.
50
+
When you click the 'Next' button on the 'New Project' window, you will see the 'New Maven Project' window.
51
51
52
52
### #Step 3:
53
53
54
-
In #Step 3, we will keep the default workspcae checkbox marked. It will select the default workspace as project workspace.
54
+
In #Step 3, we will keep the default workspace checkbox marked. It will select the default workspace as the project workspace.
55
55
56
56
If you want to use any specific workspace, please uncheck the default workspace checkbox and browse the location of your workspace.
57
57
58
-
This window also provides facility to add your project to the existing 'Working Set'. Since we do not have any working set yet, we will keep it as it is. Then click on the 'next' button.
58
+
This window also provides the facility to add your project to the existing 'Working Set'. Since we do not have any working set yet, we will keep it as it is. Then click on the 'next' button.
59
59
60
60

61
61
62
-
The first checkbox is for simple maven project creation. If you check this checkbox, it will skip the maven archetype selection and create a simple maven project for you.
62
+
The first checkbox is for simple maven project creation. If you check this checkbox, it will skip the maven archetype selection and create a simple maven project for you.
63
63
64
-
To explain the archetype selection in maven project, i am keeping it unchecked.
64
+
To explain the archetype selection in the maven project, I am keeping it unchecked.
65
65
66
66
### #Step 4:
67
67
@@ -77,13 +77,13 @@ In the next part of the 'New Maven Project' window, we need to select the 'Group
77
77
78
78
79
79
80
-
**'Group Id':** A Groupd Id is a unique base name of the company or group that created the project.
80
+
**'Group Id':** A Group ID is a unique base name of the company or group that created the project.
81
81
82
82
**'Artifact Id':** Artifact Id is a unique name of the project.
83
83
84
84
85
85
86
-
I have entered Group id as 'com.coderolls' and Artifact id as 'SampleProject'. We will keep the 'Version' value as given there.
86
+
I have entered the Group id as 'com.coderolls' and the Artifact id as 'SampleProject'. We will keep the 'Version' value as given there.
87
87
88
88
Now you can click on the 'Finish' button and Eclipse will create and build the project for you.
89
89
@@ -95,9 +95,9 @@ The `src/main/java` contains the source code and `src/test/java` contains your u
0 commit comments