Konubinix' opinionated web of thoughts

Maven

Fleeting

Outil de compilation/packaging de java.

Maven is a build automation tool used primarily for Java projects. Maven can also be used to build and manage projects written in C#, Ruby, Scala, and other languages.

https://en.wikipedia.org/wiki/Apache_Maven

Project Object Model

Maven – POM Reference

The packaging type required to be pom for parent and aggregation (multi-module) projects. These types define the goals bound to a set of lifecycle stages. For example, if packaging is jar, then the package phase will execute the jar:jar goal. Now we may add values to the parent POM, which will be inherited by its children. Most elements from the parent POM are inherited by its children, including

https://maven.apache.org/pom.html

A project with modules is known as a multi-module, or aggregator project

https://maven.apache.org/pom.html

A pom packaged project may aggregate the build of a set of projects by listing them as modules, which are relative paths to the directories or the POM files of those projects

https://maven.apache.org/pom.html

Maven will topologically sort the modules such that dependencies are always build before dependent modules.

https://maven.apache.org/pom.html

However, an aggregator project and a parent project are both POM projects, they are not one and the same and should not be confused. A POM project may be inherited from - but does not necessarily have - any modules that it aggregates. Conversely, a POM project may aggregate projects that do not inherit from it.

https://maven.apache.org/pom.html

A Project Object Model or POM is the fundamental unit of work in Maven. It is an XML file that contains information about the project and configuration details used by Maven to build the project. It contains default values for most projects. Examples for this is the build directory, which is target; the source directory, which is src/main/java; the test source directory, which is src/test/java; and so on. When executing a task or goal, Maven looks for the POM in the current directory. It reads the POM, gets the needed configuration information, then executes the goal.

https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#what-is-a-pom

super POM

The Super POM is Maven’s default POM. All POMs extend the Super POM unless explicitly set, meaning the configuration specified in the Super POM is inherited by the POMs you created for your projects.

https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#super-pom

Notes pointant ici