maven framework code example
Example 1: what is pom.xml
- pom.xml file allows us to add, remove, manage dependencies
and versions from one single location.
- POM stands for project object model
- .xml -> stands for: extensible markup language
Example 2: maven
What is MAVEN?
- Maven is a built automation tool.
- Maven is a tool that helps us create projects easyly.
--> What is built?
- Creating, adding, compiling, testing and deploying a project.
All of these combined are called a Built.
- Since maven is "built" automation tool, it helps us automate
all of these steps.
--> Similar tools like Maven?
- ant
- gradle
- kotlin
--> Most important file in a Maven project?
- pom.xml is the most important file in a Maven project.
Example 3: what is maven
What is MAVEN?
- Maven is a built automation tool.
- Maven is a tool that helps us create projects easyly.
--> What is built?
- Creating, adding, compiling, testing and deploying a project.
All of these combined are called a Built.
- Since maven is "built" automation tool, it helps us automate
all of these steps.
--> Similar tools like Maven?
- ant
- gradle
- kotlin
--> Most important file in a Maven project?
- pom.xml is the most important file in a Maven project.