+ 9
Maven
What does this program designed for and how to use It? Looks to me like html ...
4 Respuestas
+ 16
Maven is a build tool based on Java. The files with which you declare the build behaviors are XML.
Build tool means that Maven can manage your dependencies to e.g external libs for you to have them only in the place you actually need them.
Without a build tool, all external jars have to be added to the build path, which is hard to maintain.
Also, Maven (and other build tools) can run all tests after build automatically.
Additionally it makes it easier to deploy the application for different platforms what is quite handy.
+ 5
ok thanks for quick answer!
+ 3
It's manager project , example https://www.javatpoint.com/maven-pom-xml
+ 2
THANKS! sgty very detailed answer . Very useful not only to me i think. Thanks again! :))