How to run Maven from another directory ?
Supposing my Maven project is found in /home/harikr/some/project/location and my current location is /home/harikr/abc/location/ however am I able to run Maven build while not ever-changing to project location cd /some/location/project?
Solution :
mvn -f /home/harikr/some/project/location/pom.xml
Supposing my Maven project is found in /home/harikr/some/project/location and my current location is /home/harikr/abc/location/ however am I able to run Maven build while not ever-changing to project location cd /some/location/project?
Solution :
mvn -f /home/harikr/some/project/location/pom.xml
Comments
Post a Comment