Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Apache Maven Cookbook
Apache Maven Cookbook

Apache Maven Cookbook: Over 90 hands-on recipes to successfully build and automate development life cycle tasks following Maven conventions and best practices

Arrow left icon
Profile Icon Raghuram Bharathan
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (5 Ratings)
Paperback Apr 2015 272 pages 1st Edition
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Raghuram Bharathan
Arrow right icon
$19.99 per month
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2 (5 Ratings)
Paperback Apr 2015 272 pages 1st Edition
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$29.99 $43.99
Paperback
$54.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Apache Maven Cookbook

Chapter 2. IDE Integration with Maven

In this chapter, we will see how to set up and use Maven with three popular Java Integrated Development Environments (IDE). We will cover the following recipes:

  • Creating a new Maven project in Eclipse
  • Importing an existing Maven project in Eclipse
  • Creating a new Maven project in NetBeans
  • Importing an existing Maven project in NetBeans
  • Creating a new Maven project in IntelliJ IDEA
  • Importing an existing Maven project in IntelliJ IDEA

Introduction

IDE improves developer productivity by performing the following functions:

  • Creating boilerplate code
  • Carrying out code completion
  • Identifying syntax issues
  • Performing tasks such as compilation, unit testing, and deploying to web/app servers

While Maven is primarily intended to be a command-line tool, IDEs help developers enjoy as well as exploit Maven features in better ways. The integration of Maven with IDE helps us to automatically download dependencies and quickly search for dependencies through the UI, among other benefits.

The IDE integration of Maven has improved over the years and most Maven features can be set through IDE now.

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...

Importing an existing Maven project in Eclipse

If you have already set up a Maven project from the command-line, then it can easily be imported to Eclipse.

If you have not yet set up Eclipse and verified that Maven exists, please follow the Getting ready section of the preceding recipe.

How to do it...

To import an existing Maven project in Eclipse, perform the following steps:

  1. Navigate to File | Import… and click on Maven:
    How to do it...
  2. Choose the project we created in the previous chapter:
    How to do it...
  3. Import the project. You will see contents identical to what we saw when creating a new Maven project.

How it works...

Eclipse has built-in support for Maven projects. When a Maven project is imported, it parses the pom file, pom.xml, for the specified project. Based on the project's pom configuration file, it creates relevant Eclipse configurations to recognize source files, tests, and artifacts.

It also identifies all the dependencies of the project, downloads these using Maven (if they haven't been downloaded...

Creating a new Maven project in NetBeans

NetBeans is another popular IDE. This is backed by Oracle, is equally feature-rich and extensible, and supports multiple languages, such as Eclipse.

As of writing this, NetBeans 8.0.2 is the most recent edition. The screenshots in this book reflect this version.

Getting ready

NetBeans can be downloaded in two different ways (if not downloaded already):

  • Oracle provides a download of the latest JDK along with the latest version of NetBeans. This is a good option, especially if you have not installed JDK yet.
  • If JDK is already installed, then NetBeans can be downloaded separately from https://netbeans.org/. There are different bundles of NetBeans (similar to Eclipse). You can choose one from Java SE or Java EE, or all of them, based on your preference.

How to do it...

Now that NetBeans is installed, let us create a new Maven project, by performing the following steps:

  1. Navigate to Tools | Options. Choose Java and click on the Maven tab. You will notice Maven...

Importing an existing Maven project in NetBeans

Instead of creating a new Maven project, as we did in the preceding recipe, you may want to open an existing Maven project in NetBeans. Let us now see how we can import an existing Maven project.

Getting ready

NetBeans can be downloaded in two different ways (if not downloaded already):

  • Oracle provides a download of the latest JDK along with the latest version of NetBeans. This is a good option, especially if you haven't installed JDK yet.
  • If JDK is already installed, then NetBeans can be downloaded separately at https://netbeans.org/. There are different bundles of NetBeans (similar to Eclipse). You can choose one from Java SE or Java EE, or all of them, based on your preference.

How to do it...

To import an existing Maven project in NetBeans, perform the following steps:

  1. Navigate to File | Open Project...:
    How to do it...
  2. Choose the project we created earlier from the command-line. Notice how NetBeans recognizes it (with the ma icon) as a Maven project:
    How to do it...
  3. NetBeans...

Creating a new Maven project in IntelliJ IDEA

IntelliJ IDEA is an IDE from JetBrains. It has both Community and commercial editions. IntelliJ IDEA is enormously popular among developers and is regularly updated with the latest language and platform features.

For the purpose of this cookbook, we will use the Community Edition. The steps are the same for the commercial edition as well.

As of writing this book, IntelliJ IDEA 14.0.3 is the most recent edition. The screenshots in this book reflect this version.

Getting ready

As IntelliJ IDEA needs a Java environment to run, let us first ensure that the Java environment is set up on our system:

  1. Ensure that JDK is installed.
  2. Download IntelliJ IDEA by visiting https://www.jetbrains.com/idea/ and clicking on the Download link.
  3. Ensure the project SDK is set to your Java installation.

How to do it...

Use the following steps to create a new Maven project in IntelliJ IDEA:

  1. Open IntelliJ IDEA.
  2. Click on Create New Project.
  3. Choose Maven.
  4. Select the Create from archetype...

Introduction


IDE improves developer productivity by performing the following functions:

  • Creating boilerplate code

  • Carrying out code completion

  • Identifying syntax issues

  • Performing tasks such as compilation, unit testing, and deploying to web/app servers

While Maven is primarily intended to be a command-line tool, IDEs help developers enjoy as well as exploit Maven features in better ways. The integration of Maven with IDE helps us to automatically download dependencies and quickly search for dependencies through the UI, among other benefits.

The IDE integration of Maven has improved over the years and most Maven features can be set through IDE now.

Left arrow icon Right arrow icon
Download code icon Download Code

Description

If you are a Java developer or a manager who has experience with Apache Maven and want to extend your knowledge, then this is the ideal book for you. Apache Maven Cookbook is for those who want to learn how Apache Maven can be used for build automation. It is also meant for those familiar with Apache Maven, but want to understand the finer nuances of Maven and solve specific problems.

Who is this book for?

If you are a Java developer or a manager who has experience with Apache Maven and want to extend your knowledge, then this is the ideal book for you.

What you will learn

  • Install Apache Maven successfully on your preferred OS
  • Explore the various features of Apache Maven to build efficient automation tools
  • Discover when and how to use the various Apache Maven plugins
  • Generate and publish your project documentation using Apache Maven
  • Analyze and control code quality and code coverage using Apache Maven
  • Build various types of Java projects as well as other binaries
  • Set up complex projects using the concept of inheritance

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Apr 28, 2015
Length: 272 pages
Edition : 1st
Language : English
ISBN-13 : 9781785286124
Vendor :
Apache
Languages :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Apr 28, 2015
Length: 272 pages
Edition : 1st
Language : English
ISBN-13 : 9781785286124
Vendor :
Apache
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 130.97
Apache Maven Cookbook
$54.99
Mastering Apache Maven 3
$48.99
Maven Essentials
$26.99
Total $ 130.97 Stars icon
Banner background image

Table of Contents

12 Chapters
1. Getting Started Chevron down icon Chevron up icon
2. IDE Integration with Maven Chevron down icon Chevron up icon
3. Maven Lifecycle Chevron down icon Chevron up icon
4. Essential Maven Plugins Chevron down icon Chevron up icon
5. Dependency Management Chevron down icon Chevron up icon
6. Code Quality Plugins Chevron down icon Chevron up icon
7. Reporting and Documentation Chevron down icon Chevron up icon
8. Handling Typical Build Requirements Chevron down icon Chevron up icon
9. Multi-module Projects Chevron down icon Chevron up icon
10. Java Development with Maven Chevron down icon Chevron up icon
11. Advanced Maven Usage Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(5 Ratings)
5 star 60%
4 star 0%
3 star 40%
2 star 0%
1 star 0%
Jackie Oct 31, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book for those new or experienced to Maven. I wish I had a book like this 5 years ago when I started using Maven. Although I did skim though most of the beginning I did get a lot of good example of best practices and plugin implementations. I highly recommend the book to anybody from developers to configuration management, and would go so far to call the Maven Bible for all practitioners.
Amazon Verified review Amazon
Phani Krishna May 20, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
When I got the opportunity to review this book, I thought the book would mostly be focused for beginners. Surprised the book has in it for everyone unlike the books released in market earlier. It begins at the very start, with the basics including installation screenshots, explains the concepts of everything you learn. It has got various scenarios of usage, and includes the code in the book. The book provides with best examples and explains how the object oriented approach of maven is used for re usability and flexibility.The book explains about the implementation of different plugins for java code with code and examples viz FindBugs(static analysis tool to bug tracking),PMD(source code analyzer),CheckStyle(Coding standard),Cobertura(Code Coverage),Sonar(Code Quality). All the examples are thoroughly tested and they work the way described in the book.Best of luck !! Go on buy it now :)
Amazon Verified review Amazon
Ludek Jun 04, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book covers all aspects of development using Maven on major OS platforms and IDEs. In great details explains how to start using Maven in any Enterprise environment, including Enterprise networks with the proxy servers. I believe this is great book for beginners’ as well as senior developers.
Amazon Verified review Amazon
J. West Jun 12, 2017
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
This book is a good start, but for me, it left several unanswered questions. The strengths are chapter 3 (Maven Lifecycle), chapter 4 (Essential Maven Plugins) and chapter 5 (Dependency Management). After that, several chapters were devoted to broad-brush descriptions of many Maven Plugins. These chapters weren't really useful. They took space, but didn't provide enough detail. This could have been compressed into a single chapter along the lines of "Maven Plugins you might want to understand/use".The book lacks coverage of profiles and how you pull code from one repo to a push to a local repo (which I believe is vital information that most people will want to cover).
Amazon Verified review Amazon
JamesK Jan 06, 2016
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
Average book in my opinion. Too many topics brought up without a good explanation. Not sure how this bookreceived 5 stars overall. I must have missed something.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.