Skip to content

Instantly share code, notes, and snippets.

@Romain-P
Created April 15, 2022 15:13
Show Gist options
  • Save Romain-P/ac4b08336891cffc2f528f52f3d798b7 to your computer and use it in GitHub Desktop.
Save Romain-P/ac4b08336891cffc2f528f52f3d798b7 to your computer and use it in GitHub Desktop.
<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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment