Skip to content

Commit 21dd12c

Browse files
authored
Update 2022-08-06-maven-project.md
1 parent f206b05 commit 21dd12c

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

‎_posts/eclipse/2022-08-06-maven-project.md

+15-17
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ title: "How To Create A Maven Project In Eclipse?"
44
author: gaurav
55
categories: [Eclipse, Maven Project]
66
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."
88
hidden: false
99
---
1010

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.
1212

1313
## Introduction
1414

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.
1616

1717
Maven helps developers to save time by:
1818

@@ -23,7 +23,7 @@ Maven helps developers to save time by:
2323

2424
The Eclipse IDE is the most popular IDE for Java. It provides support for the Maven build.
2525

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.
2727

2828
## How To Create Maven Project In Eclipse?
2929

@@ -33,7 +33,7 @@ To create a simple maven project in the eclipse, kindly follow the below steps:
3333

3434
Open eclipse.
3535

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.
3737

3838
Then click on File>New>Project.
3939

@@ -47,21 +47,21 @@ Search 'maven' using the search bar given under 'Wizards' and select the 'Maven
4747

4848
![Selecting A Maven Project In Eclipse](/assets/images/2022-08-06-eclipse-maven-project/002-maven-project.png)
4949

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.
5151

5252
### #Step 3:
5353

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.
5555

5656
If you want to use any specific workspace, please uncheck the default workspace checkbox and browse the location of your workspace.
5757

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.
5959

6060
![Select An Archetype](/assets/images/2022-08-06-eclipse-maven-project/003-maven-project.png)
6161

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.
6363

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.
6565

6666
### #Step 4:
6767

@@ -77,13 +77,13 @@ In the next part of the 'New Maven Project' window, we need to select the 'Group
7777

7878

7979

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.
8181

8282
**'Artifact Id':** Artifact Id is a unique name of the project.
8383

8484

8585

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.
8787

8888
Now you can click on the 'Finish' button and Eclipse will create and build the project for you.
8989

@@ -95,9 +95,9 @@ The `src/main/java` contains the source code and `src/test/java` contains your u
9595

9696
![A Simple Maven Project Structure](/assets/images/2022-08-06-eclipse-maven-project/006-maven-project.png)
9797

98-
In maven projects you can manage your dependencies using the pom.xml file.
98+
In Maven projects, you can manage your dependencies using the pom.xml file.
9999

100-
The pom.xml at the begining looks like the one given below.
100+
The pom.xml at the beginning looks like the one given below.
101101

102102
```xml
103103
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -127,6 +127,4 @@ The pom.xml at the begining looks like the one given below.
127127
</project>
128128
```
129129

130-
131-
132-
This is how you have created your simple maven project step by step in Eclipse IDE.
130+
This is how you have created your simple maven project step by step in Eclipse IDE.

0 commit comments

Comments
 (0)