From the course: Introducing Maven

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Reporting

Reporting

From the course: Introducing Maven

Start my 1-month free trial

Reporting

- [Instructor] Reporting is one of the great benefits of Apache Maven. With the reporting structure, you not only are able to generate documentation about your project but also documentation about the various aspects of the build process. Let's go back to our IDE and open up the learning-maven-presidents and then the pom file. Now I want you to scroll down to the reporting section. And you will see the that I've only defined one additional report. And this is the Surefire Report. This report provides information on your tests as well as test coverage. And you will see however that Maven has built and support for a lot of reporting documentation even without this report. Now once again, we will spend a significant amount of time actually looking at reporting. But for now, let's just look at the basics. To generate the report, let's jump back into our terminal. Once again we're going to go to our learning-maven-presidents, and we're going to type maven clean package just like we did…

Contents