Maven Tutorials – Maven Build Automation

Previous – Chapter 10 Maven Tutorial – Chapter 11 In the previous chapter, we learnt on how to manage the external dependencies for a project. Now, we will see on how to automate a build process using maven. Maven Build Automation Maven Build automation is the process in which a project gets initiated with the […]

Maven Tutorials – Managing External Dependencies

Previous – Chapter 9 Maven Tutorial – Chapter 10 In the previous chapter, we understood on how to build and test a maven project and the commands used for the same. In this chapter, we will learn about managing external dependencies for a project in maven. External Dependency As explained earlier, all the basic list […]

Maven Tutorials – Building and testing the project

Previous – Chapter 8 Maven Tutorial – Chapter 9 In the previous project, we have seen how to create sample maven project using maven archetype and understood how the folder structure is organized. This chapter will cover building and testing the maven project created in previous chapter. Building the project once the coding is completed […]

Maven Tutorials – Project creation in Maven

Previous – Chapter 7 Maven Tutorial – Chapter 8 Project Creation in Maven In the previous project, we have seen how a maven project is architecture and the different configurations involved for a project. Now, we will understand how a sample java project can be created using maven. Also, will see how the project is structured […]

Maven Tutorials – POM in Maven

Previous – Chapter 2 Maven Tutorial – Chapter 3 What is POM? The easiest way to describe a POM in a maven project is, it is nothing but the core element of any maven project. Basically any maven project consists of one configurable file called pom.xml, which stands for the abbreviation “Project Object Model”. This […]