I'm relatively new to Maven, I really wanted to learn how to create a renamed pom.xml ie
is there an xml called parent-pom.xml, should I directly call it pom.xml and try to create it, or is there some other way to do this?
Thanks!
Maven is looking for a pom.xml file, so you must rename it for it to work.
pom.xml
You can use a different file name using the -f option.
-f
mvn -f parent-pom.xml .
mvn -f parent-pom.xml