Maven Flashcards

1
Q
  1. what is maven?
    2.what is POM?
  2. pom.xml
    4.Where all Jar files will be there?
  3. What and all we should give while creating a maven Project?
A
  1. Maven is a software project management comphrenvise.
  2. Project Object Model .,
  3. The pom.xml file is an essential configuration file used in Maven-based Java projects. It stands for “Project Object Model” (POM). The pom.xml file defines the project structure, dependencies, build settings, and other configuration details required by Maven to build and manage the project.
    Maven will download the Jar files from mvn repo,
  4. All Jar files we can download or we can configure our own jar files for the need of project and we can use,
  5. GroupId->Package name
    Artifact id-> Project name.
    VersionId ->Version id snapshot will be there.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. How we will add the dependency in maven?
A
  1. Download the jar files from Mvn repo and add that dependency in pom.xml files.
    Gives default project structure too.
    Auto Compile.
    Server starting, Server stopping.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly