Creating an Eclipse Project from Maven Template

1. Create a Project from Maven Template: Open a new command line terminal. In the terminal navigate to the folder under which you want to create the Java project and type this command:- mvn archetype:generate -DgroupId=com.fm -DartifactId=FindMatch -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false This tells Maven to create a Java project ‘FindMatch’ from theā€¦

Continue reading