How to skip install phase in Maven build if I already have this version installed in repo
You can bypass like this -Dmaven.install.skip=true <profiles> <profile> <id>skipInstall</id> <activation> <property> <name>maven.install.skip</name> <value>true</value> </property> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions> <execution> <id>default-install</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </profile> Last week Olivier Lamy patched this jira. MINSTALL-73