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 – Maven plugins

Previous – Chapter 6 Maven Tutorial – Chapter 7 What is a maven plugins? Plugin in maven is the one of the vital feature that is basically used to reuse the common build logic across different projects. Plugins are the ones through which all the tasks like compiling code, testing them with the junits, creating […]

Maven Tutorials – Maven Build Profile

Previous – Chapter 5 Maven Tutorial – Chapter 6 What is Maven build profile? Maven Build Profile is nothing but subset of elements which allows to customize builds for particular environment. Profiles are also portable for different build environments. Build environment basically means a specific environment set for production and development instances. When developers work on […]

Maven Tutorials – Maven Build Lifecycle

Previous – Chapter 4 Maven Tutorial – Chapter 5 What is Maven build lifecycle? The sequence of steps which is defined in order to execute the tasks and goals of any maven project is known as Maven build lifecycle. Maven 2.0 version is basically a build life cycle oriented and clearly says that these steps […]

Maven Tutorials – Maven Repository

Previous – Chapter 3 Maven Tutorial – Chapter 4 What is Maven Repository? For maven to download the required artifacts of the build and dependencies (jar files) and other plugins which are configured as part of any project, there should be a common place where all such artifacts are placed. This common shared area is […]