I have two profiles for different environments in pom.xml, I have to run mvn -PTest1 install and mvn -PTest2 install command to get th
pom.xml
mvn -PTest1 install
mvn -PTest2 install
Based on the documentation and discussion here, try separating profile names with a comma:
mvn install -P Test1,Test2