I have this Linux script inside our server . This script is used for building the Application .
cvs checkout MacMoira
cd MacMoira
mvn clean
mvn install -P MacMoira
exit 0
I did not understand this line “mvn install -P MacMoira” .
Could anybody please tell me what is the use of using -P with mvn install .
Thank you very much .
-Pspecifies a profile in Maven with specific settings (in this case the profileMacMoira)See: Introduction to profiles