Creating a new Maven project in Eclipse
Eclipse is one of the most popular open source IDEs. It originated primarily from IBM's VisualAge for Java. It is a platform that allows extensibility by means of plugins (something that Maven does as well). Eclipse can be used to develop not only Java projects, but also a host of other languages by means of plugins.
As of writing this book, Eclipse 4.4.1 (Luna SR1) is the most recent edition. The screenshots in this book are for this version.
Getting ready
Eclipse needs a Java environment to run and hence needs Java to be installed on the system. To do this, refer to the Getting ready sections of the first three recipes of Chapter 1, Getting Started.
Download Eclipse from https://www.eclipse.org/downloads/. Eclipse binaries are available for all popular operating systems. There are also different package solutions of Eclipse targeted at different types of developers (C/C++, Java EE, PHP, and so on). You should choose one of the Eclipse IDEs for...