Reputation: 16851
How to create a Maven project with Hibernate and Struts 2.
I am hoping to use Eclipse as my IDE.
Upvotes: 2
Views: 1488
Reputation: 1
Open the command prompt.
Customize following command and type in command prompt.
mvn archetype:generate -DgroupId=com.init -DartifactId=TestMavenProject
Please refer following link for more info.
https://howisolvedproblems.blogspot.com/2018/02/how-to-start-maven-project-from-scratch.html
Upvotes: 0
Reputation: 12674
There are "Spring Template applications" in eclipse. Just start with one of them. Use STS rather than plain old eclipse, just fewer headaches.
Upvotes: 2
Reputation:
you could run the following and select project from the list
mvn archetype:generate
when you're done just change to the newly created project and run the following to have the eclipse project files created, then in eclipse file/import
mvn eclipse:eclipse
Upvotes: 2
Reputation: 597116
Upvotes: 2