Using Maven in the Hibernate Tutorial

I have maven installed and am trying to go through a hibernation tutorial. But how exactly do I intend to use this file: http://docs.jboss.org/hibernate/stable/core/reference/en/html/tutorial.html#tutorial-firstapp-setup

What to do with it? What exactly does this file do?

+3
source share
2 answers

Maven uses the project object model to describe the project. This includes definitions of the dependencies and runtimes that you must use for the project, reports to run at creation, and many other functions. In Maven 2, this model is defined in pom.xml (in Maven 1, the file was called project.xml).

Maven pom.xml ( ). Maven, POM pom.xml, Maven , , , , .

jar mvn install , . , pom .

Maven - Maven. Maven by Example Maven. Ant, Maven , .

+3

pom.xml maven, . mvn install , . , maven.

+1

Source: https://habr.com/ru/post/1713568/


All Articles