11

I'm using maven 3.2.5 and need to configure the default build path of maven.

HERE I found that the changes need to be made in pom.xml file.

I just can't find the pom.xml file. Can anyone please tell me the default location of pom.xml file?

ivanleoncz
  • 9,070
  • 7
  • 57
  • 49
asamolion
  • 828
  • 2
  • 12
  • 24

2 Answers2

9

By default pom.xml is at root path of the project, else the path is overridden via -f flag.

Himanshu Bhardwaj
  • 4,038
  • 3
  • 17
  • 36
4

Also, be sure to have your project converted to a Maven Project:


enter image description here

Without this, there'll be no pom.xml file available at root path of the project.

For more info: What is POM ?

ivanleoncz
  • 9,070
  • 7
  • 57
  • 49