Reputation: 5469
I am completely new to Maven. I am using Eclipse Kepler EE edition. I want to create a Maven project and convert it into a Java EE project. I need a step-by-step explanation of the process. I would prefer if I didn't have to use the command line.
Thanks.
Upvotes: 3
Views: 23390
Reputation: 782
You can start by installing the Eclipse plugin Maven Integration for WTP. The plugin is a good starting point. Some understanding on Maven topics like plugins, goals would help you in a great way for creating a Maven project from scratch. Have a look at the getting started guide.
Since you are looking for a Java EE project I am guessing you are looking to generate an EAR file for which you can use this Apache Maven EAR Plugin
Upvotes: 0
Reputation: 5668
I want to create a Maven project and convert it into a Java EE project.
You can work in either way. Lets look at the possibilities
Upvotes: 4
Reputation: 737
File --> New --> other --> J2EE --> WHATEVER J2EE Type of Project you want
After that you Right-Click the project and goto Configure -> Convert to maven project
You can also use Configure -> Convert to Faceted form
and activate the facets you want for your J2EE Project from the project properties.
Properties -> Project Facets
I hope this will get you started.
Upvotes: 1