Book Image

Maven for Eclipse

By : Sanjay Shah
Book Image

Maven for Eclipse

By: Sanjay Shah

Overview of this book

<p>Starting with an exploration of the Maven architecture and its installation, you will then learn how to install m2eclipse, which provides Maven integration with Eclipse. Furthermore, the book guides you through the stages of project creation, including building, testing, and executing the projects.</p> <p>You will learn to customize your projects by demonstrating different core concepts of the Maven project structure. Nevertheless, you will also become familiar with the build lifecycles that generate the required artifacts. Moreover, it will also guide you through the process of handling multimodule projects and working with them effectively.</p> <p>By the end of this book, you will have a good understanding of m2eclipse and will be able to use it efficiently with ease.</p>
Table of Contents (14 chapters)
Maven for Eclipse
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Working with repositories


To browse through the repository, navigate to Window | Show View and click on Other... as follows:

Next, the Show View window appears. Search for maven repository, as shown in the following screenshot, and click on Maven Repositories:

The Maven Repositories view constitutes of the following types:

  • Local Repositories

  • Global Repositories

  • Project Repositories

  • Custom Repositories

The repositories that are of interest are local, global, and project repositories.

Local Repositories

It shows the artifacts of the local repository, and we can drill down to see its POM contents. It also consists of Eclipse workspace projects. The following is the screenshot of the local repository:

Global Repositories

It references the artifacts of the central repository. We can browse through the artifacts of the central repository and view its POM. Right-click on Global repositories, which provides the ability to re-index, build full index, minimum index, and update index from the central...